[android-porting] API for screen status

2009-12-10 Thread BHEEMSEN KULKARNI
Hi All, Is there any API avalaible in Android to know the status of screen off/on. Thanks and Regards Bheemsen -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] A2DP problem in Eclair

2009-12-03 Thread BHEEMSEN KULKARNI
Hi All, I facing issue with A2DP, I am doing audio streaming to BT headset (connected to phone and media audio), if I restart the board (power cycle). After power cycle, I see the BT headset connected to phone and media audio, when I play the mp3 file from music player, I don’t hearing anything

[android-porting] Regarding the BT pairing when android is in suspend

2009-11-26 Thread BHEEMSEN KULKARNI
Hi, We have a question regarding the LCD wake up due to external BT pairing request. When Android goes to suspend and BT chips goes to sleep, if we try to pair from remote device, OMAP core wakes due to UART2 CTS (UART2 CTS configured as BT wakeup source). But LCD is not coming up with pin

[android-porting] Not able to connect A2DP device, after connecting and disconnecting smart phone on android.

2009-10-08 Thread BHEEMSEN KULKARNI
Hi, I am using android donut filesytem. First I am connecting the smart phone device(Samsung i637 Jack) and after that disconnecting the smart phone device. Then when I try to connect the Nokia BH-103 A2DP headset it fails to connect. Any idea? Thanks in Advance: Please find below logs: D/BT

[android-porting] sleep in Android Bluetooth event thread

2009-06-02 Thread BHEEMSEN KULKARNI
Hi, In the android BT event thread there is sleep(500) which is waiting for event, which causing system not enter in to low power mode (i.eCore Off), the timer triggers every 500 msec. Can we increase these sleep timeout, is there any issue ? I tried to increasing to 1000 (before it was

[android-porting] Timer running in hciattach

2009-05-08 Thread BHEEMSEN KULKARNI
Hi, There is piece code in the hciattach poll(p, 1, 500), which is poll for every 500 msec. main() { while (!__io_canceled) { p.revents = 0; err = poll(p, 1, 500); if (err 0 errno == EINTR) continue; if (err) break; } what is this

[android-porting] Re: Timer running in hciattach

2009-05-08 Thread BHEEMSEN KULKARNI
) to achieve the full system sleep (Core Off). On Fri, May 8, 2009 at 5:18 PM, Michael Trimarchi trimar...@gandalf.sssup.it wrote: Hi, BHEEMSEN KULKARNI wrote: Hi, There is piece code in the hciattach poll(p, 1, 500), which is poll for every 500 msec. main() { while