| The Following User Says Thank You to frank63 For This Useful Post: | ||
|
|
07-31-2012
, 12:05 PM
|
|
Posts: 32 |
Thanked: 2 times |
Joined on Mar 2012
|
#372
|
BTW it seems to me like outgoing call.
What about contact list? Does HF support contact list?
I have bad news for you. I may be wrong as I don't take a look into N9 code but I'm looking inside 0.46 code.
From your log:
order = 0 - no sortCode:Jul 31 15:04:07 (2012) obexd[1319]: plugins/pbap.c:parse_aparam() o 0 sa 1 sv xxxxxxxxxx fil 0 for 0 max 2 off 0
search attribute = 1 - number
search value = 'xxxxxxxxxx' - what is looking for
filter = 0 - no filter - returns all
format = 0 - ???
maxlistcount = 2 - maximum two entires
offset = 0 - get it from the begin of the list
There is no support for search value in tracker phonebook.
So it seems your HF is using feature which isn't supported.
Code:[sbox-FREMANTLE_ARMEL: ~/Devel/obexd/0.46/obexd-0.46] > grep searchval plugins/phonebook-tracker.c [sbox-FREMANTLE_ARMEL: ~/Devel/obexd/0.46/obexd-0.46] >
|
|
07-31-2012
, 12:08 PM
|
|
Posts: 10 |
Thanked: 1 time |
Joined on Jul 2011
@ Milano, Italy
|
#373
|
You have to enable debug mode for obexd and start sysklogd
Then you can find in /var/log/syslog something like:
Jul 12 03:01:34 Nokia-N900 obexd[1676]: src/obex.c:cmd_connect() Selected driver: Phonebook Access server
Be sure to do it only when you know what are you doing. As keeping sysklogd enabled is definately bad idea.
|
|
07-31-2012
, 01:11 PM
|
|
Posts: 117 |
Thanked: 219 times |
Joined on May 2012
@ Czech Republic
|
#374
|
Hmm i see this might be an issue if the tracker doesnt support this. I guess i cant change/force the headset/obex/pbap to use something other than "search value" and patching the phonebook tracker to support it would probably be a huge amount of work (i assume)?
| The Following User Says Thank You to luf For This Useful Post: | ||
|
|
07-31-2012
, 01:16 PM
|
|
Posts: 117 |
Thanked: 219 times |
Joined on May 2012
@ Czech Republic
|
#375
|
|
|
08-01-2012
, 02:07 PM
|
|
Posts: 32 |
Thanked: 2 times |
Joined on Mar 2012
|
#376
|
|
|
08-08-2012
, 07:12 AM
|
|
Posts: 117 |
Thanked: 219 times |
Joined on May 2012
@ Czech Republic
|
#377
|
http://git.kernel.org/?p=bluetooth/o...6f94045cb2454a
if (!g_strcmp0(variable, "/telecom/pb")) else if (!g_strcmp0(variable, "/telecom/ich")) ...
if (!strncmp(variable, "/telecom/", 9)) {
variable += 9;
if (!g_strcmp0(variable, "pb"))
else if (!g_strcmp0(variable, "ich"))
...
}
|
|
08-10-2012
, 09:02 AM
|
|
Posts: 117 |
Thanked: 219 times |
Joined on May 2012
@ Czech Republic
|
#378
|
| The Following 7 Users Say Thank You to luf For This Useful Post: | ||
|
|
08-14-2012
, 04:07 AM
|
|
Posts: 782 |
Thanked: 315 times |
Joined on May 2010
|
#379
|
|
|
08-21-2012
, 10:09 AM
|
|
|
Posts: 1,468 |
Thanked: 1,894 times |
Joined on Jul 2011
@ not your mom's basement
|
#380
|
![]() |
| Tags |
| bada rox, bluetooth, carkit, contacts, irmc sync, pbap profile |
| Thread Tools | Search this Thread |
|
Great jobs.