PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > Android On TP2 > Android On TP2 Development
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #941 (permalink)  
Old 01-11-2012, 09:00 PM
[ACL]'s Avatar
VIP Member
Offline
Pocket PC: tp2
Carrier: Sprint
Threadstarter
Location: NY
 
Join Date: Feb 2010
Posts: 1,534
Reputation: 6350
[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by huckl3b3rry View Post
I installed the Dec 24 release and when I made calls to the phone I wasn't getting audio from the phone mic to phone that I called from, however I called out and the phone audio worked; then from that point forward incoming calls are working correctly also. Just wanted to through that out there in case someone was having the same issue. Of course I have the same no incoming call ringtone issue.
Really? shit i thought i included the ring hack on the libacoustic update. Also the original files are still up, just marked as deprecated so you need to see all downloads if you want to compare.
__________________
Reply With Quote
  #942 (permalink)  
Old 01-11-2012, 09:22 PM
detule's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC TP2
Carrier: Sprint
 
Join Date: Dec 2009
Posts: 85
Reputation: 140
detule is keeping up the good workdetule is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by [ACL] View Post
Nahh, dont worry about the no ringtone. That's a hack in itself that I implemented. The ringtone fails because as soon as a call comes in, the routing gets sent to the earpiece instead of the speaker.
As far as hacks go, this does wonders for my missing ringer.

Also there's stuff up on gitorious for the mic on incoming calls issue.

Though, I guess differences from gbx0b to omgb might render these ineffectual. Plus it sounds like you are on your way to figuring out more elegant solutions.
Attached Files
File Type: gz ringer.tar.gz (703 Bytes, 11 views) Click for barcode!

Last edited by detule; 01-11-2012 at 09:51 PM.
Reply With Quote
  #943 (permalink)  
Old 01-12-2012, 01:09 AM
[ACL]'s Avatar
VIP Member
Offline
Pocket PC: tp2
Carrier: Sprint
Threadstarter
Location: NY
 
Join Date: Feb 2010
Posts: 1,534
Reputation: 6350
[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by detule View Post
As far as hacks go, this does wonders for my missing ringer.

Also there's stuff up on gitorious for the mic on incoming calls issue.

Though, I guess differences from gbx0b to omgb might render these ineffectual. Plus it sounds like you are on your way to figuring out more elegant solutions.
I havent actually solved the issue and havent commited the change either until i get enough feedback from the other guys. We are a few commits behind on AudioHardware.cpp since i'm not sure if we even need them. But its simple. here is what i added.

Code:
--- a/libaudio-wince/AudioHardware.cpp
+++ b/libaudio-wince/AudioHardware.cpp
@@ -1028,6 +1028,12 @@ status_t AudioHardware::doRouting()
             audProcess = (ADRC_ENABLE | EQ_ENABLE | RX_IIR_ENABLE);
         } else {
             LOGI("Routing audio to Handset\n");
+                       if ((mMode == AudioSystem::MODE_NORMAL) && (mCurSndDevice != -1)) {
+                               LOGI("BUG: We are ignoring request to allow ring!!\n");
+                               LOGI("Mode %d out devices %x currentdevice %d)\n", mMode, outputDevices, mCurSndDevice);
+                               mCurSndDevice = sndDevice;
+                               return NO_ERROR;
+                       }
             sndDevice = SND_DEVICE_HANDSET;
         }
     }
On the cdma rhod, this condition exists where the sound is routed to handset right before it swaps to the speaker. Simply bypassing this condition helps it ring.
Reply With Quote
  #944 (permalink)  
Old 01-12-2012, 02:03 AM
huckl3b3rry's Avatar
N00b
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
 
Join Date: Dec 2008
Posts: 47
Reputation: 10
huckl3b3rry is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

I had the incoming call/mic issue again tonight. Also, I did try Bluetooth in with my car tonight and I got audio but it started out very soft and quickly ramped up to extremely loud then distorted and crack and then went silent. after a couple of seconds it repeated that pattern.
Reply With Quote
  #945 (permalink)  
Old 01-12-2012, 03:35 AM
[ACL]'s Avatar
VIP Member
Offline
Pocket PC: tp2
Carrier: Sprint
Threadstarter
Location: NY
 
Join Date: Feb 2010
Posts: 1,534
Reputation: 6350
[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community[ACL] is a trusted member of the community
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by huckl3b3rry View Post
I had the incoming call/mic issue again tonight. Also, I did try Bluetooth in with my car tonight and I got audio but it started out very soft and quickly ramped up to extremely loud then distorted and crack and then went silent. after a couple of seconds it repeated that pattern.
thanks dood. This is on the 12/24? or the 12/21+acoustic?

I need to hear back from the other regulars to see what if this is a common thing.
Reply With Quote
  #946 (permalink)  
Old 01-12-2012, 03:50 AM
milda25's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Touch Pro 2 (Rhod100)
Carrier: O2-CZ
Location: Czech Republic
 
Join Date: Dec 2011
Posts: 79
Reputation: 5
milda25 is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

I found one problem, but I don't know if this is problem with OMGB build or acoustic. If I set silent mode and vibrate only in silent the phone not vibrating during the incoming SMS. Incoming call is OK - vibrating. I'm using OMGB 21/12 + test acoustic.
Reply With Quote
  #947 (permalink)  
Old 01-12-2012, 08:36 AM
anish88's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Touch Pro 2: NAND OMGB
Carrier: Sprint
Location: Chicago
 
Join Date: Dec 2008
Posts: 115
Reputation: 35
anish88 is just getting started
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by [ACL] View Post
thanks dood. This is on the 12/24? or the 12/21+acoustic?

I need to hear back from the other regulars to see what if this is a common thing.
i was using 12/21 + acoustic and this had no incoming sound many times in call.

edit: i have not used 12/24 yet. if you would like me to update, I can. I was just waiting for the new build, because with the acoustic update, 12/21 pretty much did not give me any sound on the handset after the first or second call.

Last edited by anish88; 01-12-2012 at 08:39 AM.
Reply With Quote
  #948 (permalink)  
Old 01-12-2012, 09:52 AM
muziling's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Touch Pro 2(RHOD400)
Carrier: CDMA
 
Join Date: Nov 2010
Posts: 175
Reputation: 55
muziling is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

When phone in, got many timeout
Quote:
01-12 21:36:47.230 W/AudioTrack( 93): obtainBuffer timed out (is the CPU pegged?) 0x381e8 user=000012c0, server=00000000
This must be reason of in-call ringtone. AudioTrack manager audio play.(frameworks/base/media/libmedia/AudioTrack.cpp)
EDIT:strange, now is normal.

Logs when phone call in

EDIT: Many folk told me, they have electric sound under Android, and they found need to turn off press sound effect under WM.
Attached Files
File Type: txt phonein.txt (3.6 KB, 2 views) Click for barcode!

Last edited by muziling; 01-12-2012 at 10:33 AM.
Reply With Quote
  #949 (permalink)  
Old 01-12-2012, 11:01 AM
arrrghhh's Avatar
Testing Extraordinaire
Offline
Pocket PC: HTC Touch Pro 2 (RHOD400)
Carrier: Sprint
 
Join Date: Mar 2007
Posts: 3,604
Reputation: 7360
arrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the communityarrrghhh is a trusted member of the community
Mentioned: 7 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by muziling View Post
EDIT: Many folk told me, they have electric sound under Android, and they found need to turn off press sound effect under WM.
Uhhh... What? There's no scrap of WinMo left. So you must be mixing issues...
Reply With Quote
  #950 (permalink)  
Old 01-12-2012, 11:14 AM
huckl3b3rry's Avatar
N00b
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
 
Join Date: Dec 2008
Posts: 47
Reputation: 10
huckl3b3rry is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by [ACL] View Post
thanks dood. This is on the 12/24? or the 12/21+acoustic?

I need to hear back from the other regulars to see what if this is a common thing.

It was on the 12/24 build.
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > Android On TP2 > Android On TP2 Development


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 07:52 PM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com