Pinout configuration - MDA III, XDA III, PDA2k, 9090 General

Does anyone have the pinout config for the Blueangel/PDA2k
I understand it differs from the Wallaby/Himalaya config.

Related

Out audio connector 22 pin - Help

Hello,
I have a Blue Angel (9090)
I seek to know if it is possible to recover the sounds of
tomtom and Mp3 starting from the connector of bottom (22 pine)? I made
tests from http://wiki.xda-developers.com/wiki/Connectors but that
does not function for another thing that the telephone!!
Excuse my bad english ...
Thank's
HELP!!!!
I have the same problem... I can publish the correct circuit? Thanks!!!
Hiya - have a look at this thread: http://forum.xda-developers.com/viewtopic.php?t=19379 - they seem to have found a solution to the problem (j'espere!).

Digital power amp (SRS Wow) cab file from samsung I320

Dear All,
I wonder if there is an existing cab file(the Digital power amp (SRS Wow) tool in the samsung i320)or someone manage to extract it?
Maybe Im stupid bc its highly hardware possible hardware related?
more info at the middle of the page:
http://www.theunwired.net/?itemid=3398&catid=60&catid=60

Artemis for outdoor use - Transflective display

Hi,
i want to use the P3300 for outdoor navigation, but the display is not readable even if it is cloudy! There are display types which are called transflective displays, that are still readable if the sun is shining and the background light is switched off (e.g. http://www.sharpsma.com/Page.aspx/americas/en/42fbcfb5-685b-4c5f-a40f-8b800b6a1124/).
Does anyone know such a display that is compatible with P3300? It has to use the same display controller. Does someone know which display controller is used in P3300?
I found a good disassembly instructions in the following forum:
http://www.modaco.com/content/artemis-love-artemis-modaco-com/260167/disassemble-xda-orbit/
because it seams slightly different for P3300 and XDA Orbit.
Kind regards,
hqqh
hi,
after some internet search I found a page (http://handyersatzteile-versand.de/index1.html) where the following displays are listed as compatible for the p3300:
- Toppoly TD028TTEB1
- Hitachi TX07D05VM0APA
- Sony ACX357AKN8
But in order to check which display controller and which logical/physical interface is used I need a datasheet. But I didn't found one!!!
From Hitachi there is a datasheet for TX07D09XXXX, but I'm not sure what the differences to TX07D05 are.
Any idea?
Regards,
hqqh

PsFreedom Tytn II

See this...
xxx.youtube.com/watch?v=b_vCp7gj7W8
Does this mean something?
maybe it will give you guys some ideas...
I guess there is a way to do this, but maybe need change some codes...
In the PSfreedom wiki I see a lot of devices compatibles yet, including Nokia, Palm and HTC phones.
We need a guy with the knowledge to make this port for the Kaiser, and here is the most probable place to find him!
Port kernel psfreedom on HTC Kaiser
Hello;
I also have a Kaiser with the Kaiser rom CyanogenMod 6 [RLS5.2] and kernel-kaisimg panel2-240x320-2.6.32-tilt-froyo-02-09-10_16.nbh.
But when I try to load the module with "insmod psfreedom.ko su", you get an error "insmod: can not insert 'psfredom.ko': invalid module format".
I wonder if someone could not compile a kernel with the module in order to load the module to the application.
a developer want to try?
How much of the source is device specific?
Very little is device specific, you basically need to implement two very small functions, the problem is getting these two functions to work!
[edit] How hard is it to port it to a new device ?
The device specific code is separated from the core so it’s quite easy, there are mainly two functions to write, one to get and one to set the USB address.. two other functions that only return some static result depending on the configuration of the controller (the name of the endpoints, and whether the controller supports high speed or full speed mode). The real problem is that some controllers can be tricky and may not work as you would expect...
Read the README file provided with PSFreedom, and check the psfreedom_machine.c file for specifics on what to implement.
[edit] How can I port it to a new device ?
First, you need to figure out what controller your device uses, in the case of the N900, it’s ‘musb’, you can use the ControllerList to help you, if it doesn't, then extend it!
Then go to the driver code for that controller (probably in drivers/usb/gadget) and look for ‘SET_ADDRESS’. In the case of musb, it was in drivers/usb/musb/musb_gadget_ep0.c. In there it was setting the address to the USB device, so just copy that code into the psfreedom_machine.c to allow setting the address, and add a similar function to be able to retreive the address.
Then add a function to return 0 or 1 depending on whether the controller supports HIGH, FULL or LOW speed mode (go to usb_gadget_register_driver for your controller, and in the first lines, it should validate the speed argument, it will tell you which ones are acceptable), set LOW speed mode to return TRUE only if FULL and HIGH speeds are both unavailable.
Finally, add a function to return the endpoint names.. it will usually be something like ‘epXin’ and ‘epXout’ (where X is the endpoint number), or “epXin-bulk”, etc.. look at how the driver initializes its endpoints or grep for “->name” in the file to find where it sets it… If the controller you are porting to doesn't have an endpoint matching the endpoint description requested, then you are allowed to return a different endpoint as long as you properly modify the endpoint description to set the bEndpointAddress to the correct address address of the new endpoint (but you still have to respect the direction of the endpoint of course!)
Click to expand...
Click to collapse
://psfreedom.com/wiki/index.php?title=FAQ
I spent some time working on this. I am sure it is possible.
I think there are two things that would have to happen.
1. A custom kernel. - I know there are a few things that must be disabled in the kernel. ADB USB Functionality, USB Mass Storage Functionality, Tethering, and on some devices WiFI. (I forget where I read that these must be disabled, but I did read it)
2. Changes to the code.
I am no expert at this, I think I am proficient at doing SOME things. I created a zImage last night. I know I am missing something tried to create a custom NBH and put it on my kaiser no go.
So, think I'll be spending more time on this. Anyone had any luck working on this at all?
UPDATE:
I did some pocking around, this is what I found in msm72k_udc.c for the closest thing to SET_ADDRESS (It was USB_REQ_SET_ADDRESS)
Code:
writel((ctl.wValue << 25) | (1 << 24), USB_DEVICEADDR);
I will be honest unsure if this is the driver for the controller due to the fact that on the device the usb driver is msm_hsusb. However, I tend to be wrong more than I am right so....
This phone is capable of it i'm sure. I just tried every other psfreedom releases and experienced different behaviours with each one of them. Though i know that zImage needs to be modified. I'm no programmer so i can't really help anyone with this.
So let's hope someone work something out.
OK I think It is not the msm72k but the msm_hsusb, when you look at the device it shows that in the usb driver folder.
Based on the psfreedom site is "in progress". Hopefully someone smarter than I is working it bc dont think Ill get far.
i'm looking for a tytn2 port too! Thanks for all of you that's working for it.
sugestion...maybe put this thread as an official for psfreedom kaiser info?
thanks!
diamond port finished http://wiki.psfreedom.com/wiki/HTC_Raphael
this version can help for kaiser porting?
Yep as far as i know this is a good start...
Hi guys just passing by to show you something...
http://xdandroid.com/wiki/Supported_Devices
This android port works with kaiser as you can see in the compatibility table.
Is there anyone who's able to modify zImage for us?
I think we're getting close. The only problem so far is the usb driver.
Come on guys you can do it!
don't work on kaiser, kaiser is tilt no tilt2
pavo87 said:
don't work on kaiser, kaiser is tilt no tilt2
Click to expand...
Click to collapse
Oh man can someone remove number 2 from that table please just so i can sleep well tonight?
lol
but there are someone that is working on the porting?
sorry for my bad english
There is someone working on the msm_hsusb usb driver yes.
Let's wait and see
I think the usb on kaiser working.. mean someone tell me it work on linux.. but in WXP can it fork too I think.. someone can use usb on W7 x64. But I can't get it work there...
Can anyone tel me how get it fully work on W7 x64? Thanks
Sent from my HTC Kaiser Ion using XDA App
come on guys, u can do it!!!!!
Is still on development?, or nobody will continue?, its a shame, kaiser is very usefull on android Roms, maybe is not that easy to port.
By te way, is a port for HERO on the wiki, and kaiser runs several roms from Hero smartphone, is this useful?
http://wiki.psfreedom.com/wiki/Device_compatibility_list
Regards.
msm_hsusb is just an other driver for the MSM72K controller, which is used in older kernels.
http://wiki.psfreedom.com/wiki/Device_compatibility_list
Milmirex said:
By te way, is a port for HERO on the wiki, and kaiser runs several roms from Hero smartphone, is this useful?
Click to expand...
Click to collapse
I think so but we need a kind soul who can edit zImage for us to boot it with Haret...

Once again about 3G/4G/5G BC config

Hi all
Does anyone know some GUI software who provide free options to read, write or at least calculate the BC config items (1877, 6828) depending to necessary bands?
thank in advance

Categories

Resources