XDA2s Connectivity - MDA III, XDA III, PDA2k, 9090 General

Sorry about this question may be a little simple but i cannot seem to find an answer on the net (or even within o2)
Is it possible for the USB output on the XDA2s to be converted to a 9pin serial port to allow me to connect say for example to a 9pin serial output of my clifford alarm system.
Thanks guys.

you can get serial cables for the phone.
I used mine for interfacing to a GPS
as for the specification of your alarm system, you would have to reverse engineer the protocol, or try and find the specs on the net.
try http://www.expansys.com/
Baz

Related

adding bluetooth to xda 1

Hi all,
I am working on adding bluetooth to the xda 1. I have searched on the net for a serial BT board because usb is not a option. Turns out that almost al BT boards found in the cheap usb dongels have serial / pcm and usb connections on it.
the best manufacturer I could find is CSR they stack almost everything in a smal package and there is lots of info on there web site.
Since I am mainly a hardware guy I am a bit stuck on the software side.
I am looking for a way to make my xda talk to my BT board.
I was thinking of reassigning the bt com port (ppc 2003) to my external com port through the registry, but which key to attack for that ?
Perhaps trade in my IR port (dont use it) this will voidyour warranty but I dont have any.
Also finding a piece of BT software to drive the board is hard to find, i Got some from a CF BT card. but no luck so far.
Any body who can help me with this ?
thanks in advance.

Serial Cable

Hi all,
This forum being the greatest about HTC, I think you guys will have the answer :
I would like to use my TyTN to connect to the console of a router (using serial connection) :
1. Does anyone know where I could find a miniUSB-DB9 adapter ?
2. Will there be a driver for serial port, or is it natively managed with COM ?
Such cables exist but for PC, but not miniUSB and with a Windows driver, no info about the same thing for PocketPC.
Anyone knows ?
Thanks
zEar - HTC TyTN
Re
----
DELETED Message where I thought I found it..
Understood the problem..
Hi all,
AFAI understood I cannot find a solution due to the lack of USB Host support in the TyTN. I still wonder if the port can be used in direct low level serial mode as you see in bootloader. Could WinMobile use it ?
Another way would be to have a device that would be usb host, putting the phone into slave mode, but maybe I dream...
Thanks for any reply..
there is a bluetooth to serial adaptor which has been reported to work with the tytn.
COM1
Hi,
After much googleing there's still hope. Windows Mobile presents a COM port : 'COM1 via cable' and in the specs of the TyTN there is RS232 communication.
I still cannot figure out if the miniUSB connector pins could be simply mapped to the corresponding RS232 signals. Probably not
Anyway I flashed the XDA-Live wm6 ROM and it's great ! the battery seem to last longer (still 70% after 2 days!)
Thanks to the xda-dev community

USB to serial adapter

Good morning to all, I have a program that allows the operation of a unit through odbII - serial, so use with a handheld HP5550 that has taken the serial, I wish I use with my HTC P3600 but I can not use the adapter USB to serial, can you help me please?
I have written with WINCE driver and use the ARM is right?
Sorry for my bad English

TMC to USB Port (for Chinese GPS)

Dear All,
I would like to share my experience in this TMC project.
Recently I bought a Chinese GPS 100 unit to connect to my JVC KD AVX40
This has an av out in 320x240 and JVC has an AV in.
You can control the unit via touchpad.
It works correctly to my unit so I decided to get a TMC for this product.
This unit has One USB port which is in Host mode.
So Put a normal USB hub on it and it worked well with Pendrive and External Mouse
Next step, I got a FTDI USB to Rs232 device.
It has FTDI 232BM chip for UART connection it's very important to use chip like this , because of the windows ce driver
I've opened it and I removed chip called SP213EHCA.
In every RS232 there are 2 chips on the board. One is for USB to UART , and the second is for Uart To Rs232.
Because the every TMC receiver uses TTL communication which is working on 3.3v I need to "convert" the unit to USB to UART TTL only.
Obviously you can build a small circuit for this communication, but for myself it was easier to use this solution.
After I removed the Rs232 chip.
Datasheet Page 5 for picture of the pin outs.
You can download it from the FTDI website
The Tmc Receiver pin out is :
Pin definition:
Pin1 Vcc: 5V +- 10%
Pin2 TX: 3.3V TTL level, TMC data output.
Pin3 RX: 3.3V TTL level, receive commands.
Pin4 GND <-- It's not ground It's 5V !!!
Pin5 GND (for mini-USB only)
I soldered a mini USB mother type connector to the chip legs:
PIN2 goes to chip leg 24
PIN3 goes to chip leg 25
PIN5 goes to chip leg 17
So after this I connected the Royaltek TMC unit to my "hacked Rs232" board.
I put the "hacked rs232" to hub and I used a USB mini usb cable for power the tmc unit, so I connect the cable to hub and after that to the tmc.
After this I used this driver for windows ce 5.0
You can download it from the ftdi web site
I have to use mortscript which copy a self made reg file to the registry and copy the ftdi dll to /windows/ folder
Reg:
REGEDIT4
[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\1027_24577]
[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\1027_24577\Default]
[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\1027_24577\Default\Default]
[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\1027_24577\Default\Default\FTDI_DEVICE]
"DLL"="ftdi_ser"
[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\Default\Default\255]
[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\Default\Default\255\FTDI_DEVICE]
"DLL"="ftdi_ser"
[HKEY_LOCAL_MACHINE\Drivers\USB\ClientDrivers\FTDI_DEVICE]
"Index"=dword:00000001
"InitialIndex"=dword:00000001 <--- This is for which com port to use 1...9
"Dll"="ftdi_ser"
"Prefix"="COM"
"Version"="1.0.2.11"
"ActiveSyncSetting"=dword:0003e880
"LatencyTimer"=dword:00000010
"DeviceArrayIndex"=dword:00000000
This reg file is directly uses COM PORT 1 (It was free in my device )
After this I created a very small circuit which holds the usb power for 20sec
parallely my reg and driver is installing in this time.
When I reached 20sec My Hive based Windows Registry will recognize the FTDI device and there are no pop up meassegas appear ....
IGO recognized the TMC device hardware
The reason I write this how to , because I read so many forums ,and web pages to find a solution for this , but i didn't find anything.
GNS is providing a TMC receiver for CAR PC but with a prolific based USB to UART chip, and the ARM based cpu is not understanding the driver
Ough I forget the tmc receiver what used:
Royaltek RTA-3000
Have a nince day I hope that I could help to someone
guika said:
Dear All,
Snip, snip
Have a nince day I hope that I could help to someone
Click to expand...
Click to collapse
I got the same JVC stereo, how can I unlock for multizone DVD? Thank!
If i understand it correctly that you mean, you want to unlock the dvd region limitation.
I didn't unlocked it, but the main problem, that the unlock lock status is came from the dvd FW, which is not possible to reach it, via this unit. I searched for the web, and JVC also, for some FW update. There isn't any. So from my side i say it's not possible in easy way.
I have tested this solution and since half year aho its working fine under -20 to +50 so it is a solution.
Sent from my GT-I9000 using XDA App
Compatibility
Also tested with FT2232H
This soultion is working , only bug that because of the dual uart the windows device pop up a notification for the second uart driver.
Also working.
Not working with Moxa chip.
Not working with Prolific PL-2303. ( Because the driver for the chip is not going to get open com port in wince 5 :S )
It seems that the only solution is the FTDI chip.
I've made a test with bluepanter and Wayteq and a very old Blaupunkt.
Solution is worked when I changed the usb mode to Host in wince.
It's seems for the blepanter and the wayteq it make not so much sense bacuse you could buy their original accessories.
For the blaupunkt is okay.
Also this could be okay for the 1-2 din chinese gps. Needs to be tested.
Reception improving
I had issue with the tmc reception.
So the solution is make a fm Y cable, and share the outdoor antenna to the head unit and to the tmc receiver.
After the installation, I realised that the reception was not so good, because I miss calculated with the phantom power to my roof antenna, after the phantom power installation everything went fine.
I got reception where I never had it before. TMC news downloading time improved as well.
Take care with the phantom power because it could kill the TMC receiver, use only one way adapter !
hi,
many many thanks for you thread...i had some questions...
i have bought an Dynavin DVN-MC2000 and this unit is without TMC but it have an GPS-In Mother-Usb cable...i think this goes directly to the wince5.0 system.
Where did you buy your RT-3000 and do you have the complete name of the FTDI Modul?!
Maybe we can develop a solution together i could make fotos from my open DVN-MC2000 if it helps
Maybe a ohoto would be great.
I bought the tmc unit in hungary in an avarage shop.
About ftdi i had one in my work desk. But it doesnt matter the meaing is it should any type which is supporting from the wince ftdi driver side. See ftdi web.
Sent from my GT-I9000
Hello all!!
I've been reading the post and I have to congratulate you, very interesting!
If you do not mind I'll use this thread because I want to ask you a question, I haven´t found any response in any expert forum.
I have a problem with my car radio. It is a chenese radio with GPS and TMC integrated.
From the beginning the TMC worked correctly but It had problems with the GPS. It didn´t work properly (may be the driver was wrong or it was bad installed on the WIN CE5). The provider din´t give me a solution and I found a forum in France. There someone sent me an European WIN CE 5 ROM with the GPS installed a working properly. The problem is that this guy didnt have any ROM with the TMC driver integrated and now I dont have it installed.
My actual state is: WIN CE + GPS HW (installed and working) + TMC HW (not insalled)
My question is:
How could I install the TMC in my radio WIN CE5? The HW exists but my WIN CE 5 does not have the drivers and of course the IGO can not find it.
Thank you very much!
pd: sorry about my english!!!
elmike1980 said:
Hello all!!
I've been reading the post and I have to congratulate you, very interesting!
If you do not mind I'll use this thread because I want to ask you a question, I haven´t found any response in any expert forum.
I have a problem with my car radio. It is a chenese radio with GPS and TMC integrated.
From the beginning the TMC worked correctly but It had problems with the GPS. It didn´t work properly (may be the driver was wrong or it was bad installed on the WIN CE5). The provider din´t give me a solution and I found a forum in France. There someone sent me an European WIN CE 5 ROM with the GPS installed a working properly. The problem is that this guy didnt have any ROM with the TMC driver integrated and now I dont have it installed.
My actual state is: WIN CE + GPS HW (installed and working) + TMC HW (not insalled)
My question is:
How could I install the TMC in my radio WIN CE5? The HW exists but my WIN CE 5 does not have the drivers and of course the IGO can not find it.
Thank you very much!
pd: sorry about my english!!!
Click to expand...
Click to collapse
From the first i need to know what kind of tmc chip do you have. Royaltek/GNS and after that we can get closer to the problem. Qhit the upper sokution you can put in the driver if we will figure out the chip manufacturel.
Sent from my GT-I9000
I am sure that the integrated chip is GNS tipe.
The only thing that can hapen if we install a wrong driver is that it would not work, wouldnt it?
But the other things would work good...
thank you!
elmike1980 said:
I am sure that the integrated chip is GNS tipe.
The only thing that can hapen if we install a wrong driver is that it would not work, wouldnt it?
But the other things would work good...
thank you!
Click to expand...
Click to collapse
Generally yes.
But first. You will need to do some test. I will post it later. Because right now in this days i have a lot to do. I wont forget your problem so i will post it here what to check first to start your problem solving....
Sent from my GT-I9000
thank you very much!
I will wait for your answer.
regards.
please dont forget me!!
bye!
Dony worry i wont
Sent from my GT-I9000 using XDA App
Hello Guika,
Where did you get your Chinease GPS 100? can you send me the link?
Thanks,
cjean said:
Hello Guika,
Where did you get your Chinease GPS 100? can you send me the link?
Thanks,
Click to expand...
Click to collapse
http://www.car-audio.hu/?base=items&filter=cat&type=item&catid=0&cid=141&id=714
Sent from my GT-I9000
elmike1980 said:
thank you very much!
I will wait for your answer.
regards.
Click to expand...
Click to collapse
I found something maybe from your IGO8 folder is missing one file called gpstmc.dll
Check this forum
http://www.mobilepassion.org/viewtopic.php?t=2355
I will check it.
Anyway I think that I need the driver for TMC receiver. I have the HW but it is not installed. Do you know were could I find TMC drivers for Win CE 5? with them the problem would be solved-install and the IGO would take it automatically (I had it installed the first time, but the GPS didnt work).

Alternate BT that can connect to XGPS160? [Rockchip PX5 A53 | Android 9.0 | 4GB RAM]

(@Admins I think this is the correct forum to post this in, but please feel free to move it if I've chosen the wrong forum. I'm still figuring out exactly what category my device is in)
TL;DR - Trying to figure out if it's possible to get an external USB Bluetooth dongle working on my radio instead of the built-in one, so I can connect to all types of bluetooth devices, not just streaming audio
Hi all,
I'm searching for a possible solution that would allow me to connect my Android radio (AUTOPUMPKIN AA0495B, using a PX5, MCU CSN2_06252019_163051) to a Dual XGPS160 device. I installed this stereo in my track car for the purpose of running Harry's Lap Timer; currently the app is running perfectly, with a wired OBDLink EX in use for OBDII data and also connecting to a GoPro via WiFi to control the camera. The last piece of the puzzle is I want to get an XGPS160 connected for better GPS data capture (10Hz vs 1Hz of the radio's GPS). After hours spent trying to get it to pair and connect to the device, I emailed AUTOPUMPKIN support and they confirmed that this radio cannot connect to such devices, as the Bluetooth module in the radio is essentially a glorified bluetooth headset and can only connect for streaming audio (I haven't been able to determine the model number of the bluetooth module it uses). My hope is there is a USB Bluetooth dongle that I could plug into the radio and then have the radio use that instead, which would then allow it to connect to the XGPS160 (and any other type of bluetooth device).
When I go into the Car Settings on the radio, it has the following options available for bluetooth:
IVT i140
IVT i145
FC6000TN
GOC_BC5
KD6
KD6 is what is selected from the factory. Please correct me if I'm wrong, but my understanding is this list is basically the different bluetooth hardware models the radio has driver support for? If I'm correct on that, then I'm also guessing if I were to plug in a bluetooth dongle using one of the other models and change this setting, the radio would use that instead of the built-in bluetooth? I don't use the bluetooth audio streaming or phone tethering feature, so I don't care if I lose those features if it allows me to connect the radio to the XGPS160. As long as the WiFi keeps working I'm ok with it.
Sorry if I'm asking any stupid questions; I'm a programmer by background, but even after hours of reading this forum my knowledge about the hardware in these Android radio units is still very limited. That being said, I'm not opposed to modifying config files to get this working. I have Android Developer mode enabled and I can connect to the radio via ADB; I spent some time looking at the file structure and various config files so modifying those if needed shouldn't be a problem for me.
thanks!
There was another (lengthy) thread on the subject of bluetooth dongles around here somewhere. You will have to do a search for it. If I remember correctly you had to open your head unit and physically disconnect your original bt module... and even with that there was limited success in getting the thing to actually work....and of those who claimed they did get it to work also said they couldn't get anything more to connect to the dongle than what the original BT could handle
It's too bad too. I have a sound processor on my system which uses an app through BT on my phone to make adjustments and I was HOPING it would connect to the head unit. It won't
BTW... your obdlink ex usb will also work with Torque (Pro). I use it with torque and it's blazing fast and reliable.... a lot more than a BT connection!
deja100 said:
(@Admins I think this is the correct forum to post this in, but please feel free to move it if I've chosen the wrong forum. I'm still figuring out exactly what category my device is in)
TL;DR - Trying to figure out if it's possible to get an external USB Bluetooth dongle working on my radio instead of the built-in one, so I can connect to all types of bluetooth devices, not just streaming audio
Hi all,
I'm searching for a possible solution that would allow me to connect my Android radio (AUTOPUMPKIN AA0495B, using a PX5, MCU CSN2_06252019_163051) to a Dual XGPS160 device. I installed this stereo in my track car for the purpose of running Harry's Lap Timer; currently the app is running perfectly, with a wired OBDLink EX in use for OBDII data and also connecting to a GoPro via WiFi to control the camera. The last piece of the puzzle is I want to get an XGPS160 connected for better GPS data capture (10Hz vs 1Hz of the radio's GPS). After hours spent trying to get it to pair and connect to the device, I emailed AUTOPUMPKIN support and they confirmed that this radio cannot connect to such devices, as the Bluetooth module in the radio is essentially a glorified bluetooth headset and can only connect for streaming audio (I haven't been able to determine the model number of the bluetooth module it uses). My hope is there is a USB Bluetooth dongle that I could plug into the radio and then have the radio use that instead, which would then allow it to connect to the XGPS160 (and any other type of bluetooth device).
When I go into the Car Settings on the radio, it has the following options available for bluetooth:
IVT i140
IVT i145
FC6000TN
GOC_BC5
KD6
KD6 is what is selected from the factory. Please correct me if I'm wrong, but my understanding is this list is basically the different bluetooth hardware models the radio has driver support for? If I'm correct on that, then I'm also guessing if I were to plug in a bluetooth dongle using one of the other models and change this setting, the radio would use that instead of the built-in bluetooth? I don't use the bluetooth audio streaming or phone tethering feature, so I don't care if I lose those features if it allows me to connect the radio to the XGPS160. As long as the WiFi keeps working I'm ok with it.
Sorry if I'm asking any stupid questions; I'm a programmer by background, but even after hours of reading this forum my knowledge about the hardware in these Android radio units is still very limited. That being said, I'm not opposed to modifying config files to get this working. I have Android Developer mode enabled and I can connect to the radio via ADB; I spent some time looking at the file structure and various config files so modifying those if needed shouldn't be a problem for me.
thanks!
Click to expand...
Click to collapse
No; it must be a specific BT type MD725 realtek device. No, you cant connect all manner of devices due to the hacked BT implementation.
Bob_Sanders said:
There was another (lengthy) thread on the subject of bluetooth dongles around here somewhere. You will have to do a search for it. If I remember correctly you had to open your head unit and physically disconnect your original bt module... and even with that there was limited success in getting the thing to actually work....and of those who claimed they did get it to work also said they couldn't get anything more to connect to the dongle than what the original BT could handle
It's too bad too. I have a sound processor on my system which uses an app through BT on my phone to make adjustments and I was HOPING it would connect to the head unit. It won't
BTW... your obdlink ex usb will also work with Torque (Pro). I use it with torque and it's blazing fast and reliable.... a lot more than a BT connection!
Click to expand...
Click to collapse
Yeh I found that threat in my searches, but no one in there quite mentioned this specific scenario (Selecting one of the other options in the Bluetooth settings) so I wasn't sure. And I'm definitely not opening up the unit and cutting on the hardware; hacking config files I can do all day long, but I have no skills when it comes to soldering so I'd probably just destroy the radio in the process of trying to cut that module :laugh:
Yeh I've run the OBDLink EX with Torque as well for data logging temps on track and it worked flawlessly for that as well. BT is definitely more convenient, especially since most are running apps from their phones, but if you have a dedicated radio like these then it's a no-brainer to permanently wire up a USB device.
marchnz said:
No; it must be a specific BT type MD725 realtek device. No, you cant connect all manner of devices due to the hacked BT implementation.
Click to expand...
Click to collapse
When you say "hacked BT implementation" I'm assuming you mean they don't use the standard Bluetooth stack built into the Android OS? That would make sense, as when I try to do anything with bluetooth from the standard Bluetooth settings menu, it doesn't do anything, doesn't see any devices available for pairing, or anything else. You can only see other devices and pair to them from the PUMPKIN Bluetooth app; the funny thing is it will go through the first steps and show the XGPS160 as being paired, but none of the apps that use the GPS actually see it as a paired device (my OBD dongle shows up, but not the GPS).
I don't understand why they didn't just use standard bluetooth that's already part of the OS, rather than use some hacky custom solution
Quick update since the last post. Spent some time tonight on google looking up the information I could find on those other bluetooth modules in the list of options on my stereo. Based on technical manuals and FCC documents, it appears the FC6000TN and BC5 are audio-only bluetooth chips that only support A2DP profile (basically the same as what I have now with the KD6); Now the IVT i140 and IVT i145 on the other hand appear to be full fledged bluetooth chips, and do support the SPP (Serial Port Protocol) that is needed by the XGPS160 (and many other bluetooth profiles) so in theory that would work. Unfortunately after searching for both of those, all I can find are ones in bare module form (i145 and i140) that would have to be soldered onto the board (assuming the pins are even compatible) and there are no USB versions of them that I could just plug in to my radio's free USB-A slot. The only thing even remotely close that comes up in Google in USB form is this adapter and I'm pretty sure it's not based on the i140 or i145.
Given that my soldering skills are non-existent, it seems I'm pretty much out of luck on getting this to work. Disappointing for sure, as I would gladly have paid more $ for the unit to come with a fully functional bluetooth module instead of this hacked audio only junk they put in it :/
deja100 said:
Quick update since the last post. Spent some time tonight on google looking up the information I could find on those other bluetooth modules in the list of options on my stereo. Based on technical manuals and FCC documents, it appears the FC6000TN and BC5 are audio-only bluetooth chips that only support A2DP profile (basically the same as what I have now with the KD6); Now the IVT i140 and IVT i145 on the other hand appear to be full fledged bluetooth chips, and do support the SPP (Serial Port Protocol) that is needed by the XGPS160 (and many other bluetooth profiles) so in theory that would work. Unfortunately after searching for both of those, all I can find are ones in bare module form (i145 and i140) that would have to be soldered onto the board (assuming the pins are even compatible) and there are no USB versions of them that I could just plug in to my radio's free USB-A slot. The only thing even remotely close that comes up in Google in USB form is this adapter and I'm pretty sure it's not based on the i140 or i145.
Given that my soldering skills are non-existent, it seems I'm pretty much out of luck on getting this to work. Disappointing for sure, as I would gladly have paid more $ for the unit to come with a fully functional bluetooth module instead of this hacked audio only junk they put in it :/
Click to expand...
Click to collapse
Unfortunately, It wouldn't matter which BT you use from the supported BT types, BT implementation is non-standard to do stuff like act as a BT hands-free.
marchnz said:
Unfortunately, It wouldn't matter which BT you use from the supported BT types, BT implementation is non-standard to do stuff like act as a BT hands-free.
Click to expand...
Click to collapse
Yeh, that's extremely disappointing Does anyone know of any Android based radio units that have full working bluetooth? I don't mind buying a new unit for the car if I know it will work with everything.
The old intel sofia units (mtcd as well) had the bluetooth & wifi ibtegrated into the soc...and they had a standard (or at least more profiles) implemented
Enviado desde mi SM-G975F mediante Tapatalk
ikerg said:
The old intel sofia units (mtcd as well) had the bluetooth & wifi ibtegrated into the soc...and they had a standard (or at least more profiles) implemented
Enviado desde mi SM-G975F mediante Tapatalk
Click to expand...
Click to collapse
Bummer they don't make those units anymore :/ Then again, they may not have been powerful enough to run my track timer apps anyway.

Categories

Resources