[android-kernel] Any USB-Serial Adapter on Android Phones?

2013-01-14 Thread David White
Specifically, for my Note N7000 but interested in more general application as well for a new app. I own a KeyspanUSB->Serial adapter. When I plug it in via an OTG cable, I can see (via terminal window and lsusb command) that the ne

[android-kernel] Re: How to access system.prop in kernel?

2011-11-29 Thread white
As I know there are no method to access on kernel side. You can try it with user file system read. But I don't recommend that way. prop file is not for kernel mode, but for user mode On 11월29일, 오전3시10분, Yogi wrote: > Hello, > > User space apps has APIs given by framework such as > getprop()/setp

[android-kernel] Re: Panda Board booting on ICS

2011-11-29 Thread white
Almost this case, please check the kernel drivers and user libraries version and build. You can check it simply with readelf. On 11월29일, 오후10시52분, Amit Pundir wrote: > Have you included SGX binaries as well? Display won't come up until you use > Panda SGX binaries or tweak your build to include s

[android-kernel] Re: Hardware Setup for Developing for Wifi Direct

2011-11-29 Thread white
Almost android reference phone support WiFi source code. As I know, most android reference phone use the Broadcom WiFi chipset. So you can use it Android platform does not have a dependancy on WiFi driver. On 11월28일, 오전2시40분, "s.rawat" wrote: > HI, > I am developing an application for wifi dire

[android-kernel] Re: How can I monitor and get http traffic in an android

2011-11-29 Thread white
Maybe you are finding the tcpdump. Android has already support the tcpdump. Just use the tcpdump, and then analyze it with wireshark or Just check the packet throughput, you can use netperf On 11월29일, 오전2시34분, Nick Fedchik wrote: > 11/29/2011 12:04 PM, biAji пишет:> I believe there has been a me

[android-kernel] Re: Touch Calibration in Android 2.1

2010-09-04 Thread white
can you please help me on > this > regard? > > On Sep 4, 8:20 am, white wrote: > > > > > That code is not support anything. That code just support input device > > coodination. > > > What is the touch device type? > > Android platform h/w spec des

[android-kernel] Re: Touch Calibration in Android 2.1

2010-09-03 Thread white
That code is not support anything. That code just support input device coodination. What is the touch device type? Android platform h/w spec describe the C-type touch. Almost C-type touch has the default calibration value. If you using the R-type, you need to add the Calibration algorithm On 9월3

[android-kernel] Re: What scheduler does Android OS use?

2010-09-02 Thread white
search the platform code dalvik has policy n proiorty setting code, also framework related with audio n video check the init.rc and cutil folder u need to search the platform after eclair release On 9월2일, 오전11시43분, Bindu Nair wrote: > Thanks to Rajeev and white for hitting my exact quest

[android-kernel] Re: adbd disconnected issue

2010-08-31 Thread white
Windows : Checke the device manager. Linux : lsusb. lol On 8월25일, 오전10시20분, ngujason wrote: > Hi, > > I am running some tests with Froyo on PC connected by a USB cable. > While I run the tests, adb connection gets lost although I still see > the USB connection. I looked at the log, and I am thin

[android-kernel] Re: when i compile android source code have one error

2010-08-31 Thread white
Did you check the java version and java library? Android buid system only check the java compiler version. You would better setting the JAVA_HOME and ANDROID_JAVA_HOME On 8월11일, 오후9시00분, dhaval shah wrote: > Hi, > > Please follow steps given in attached file to generate .iso image. > Attcahed f

[android-kernel] Re: Kernel panic - not syncing: Attempted to kill init!

2010-08-31 Thread white
Please check the ramdisk. kernel booting process check the init process, but if your system does not involve the init process in ramdisk, kernel prints that message. kerenl check the "/", "/sbin", "/usr/bin/" and then prints that message. Android usally /init process..^^ On 8월29일, 오후9시29분, andd

[android-kernel] Re: Boot up hangs at initial stage.

2010-08-31 Thread white
First of all, your kernel and platform boots complete? Second, Could you see any message from your uart? If your kernel is hang up, you can see your bootloader messages. On 8월31일, 오전6시55분, Vikram wrote: > What is the source of your kernel for zoom board? > > TI keeps the kernel for the same at:

[android-kernel] Re: What scheduler does Android OS use?

2010-08-31 Thread white
As I know, Android is using the CFS. They are combine with RT scheduling. When you playing the audio and video service, paltform change the scheduling policy and change the schedule prority. On 8월31일, 오후9시21분, sanjeev sharma wrote: > Android works as an Sotware stack over linux kernel and Androi

[android-kernel] Question about MMAP Size

2010-04-28 Thread white
I want to know more datail about this. As I know, android platform is using binder mechanism, and binder is using mmap mechanism. Iliyan Malchev fixed mmap size, 4KB -> 32KB. Does it affect to platform's performance and security? Just I read the comment, that's no related to performance and secu