I found what causes the wakelock/high system power consumption! - T-Mobile Samsung Galaxy Note II

It's a problem with the USB OTG Unmounter. I found a solution for the SII at forum.xda-developers.com/showthread.php?t=1953971 but I don't really have the expertise to convert this solution to the Note II. Can someone make the changes and upload the resulting file?

Related

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

Using HD2's USB Host feature

Hi !
Does anyone know if it is possible to use libusb-win32 under windows mobile ?
I want to be able to use one usb game controller with the HD2 but I don't know where to start since I don't know if I can use libusb directly (I don't have the know how to use low level comunication).
Thanks
the hd2 doesnt have native usb host support, however i saw a usb host replicator program a while back for other devices.
Kev007 said:
the hd2 doesnt have native usb host support, however i saw a usb host replicator program a while back for other devices.
Click to expand...
Click to collapse
if it doesnt have USB OTG the only thing u can use is Zenos USB host Drivers + a Custom power injecter for the USB... Works on any windows mobile :|
I found these videos that show USB host being used. They are not very good. There is no sound so there is no description as to exactly how this was accomplished or what equipment is being used. Follow this link....
(would not let me post link since I am a new user, but I searched google for "HTC HD2 Supports USB-host" and it is at the htcphones.net site)
If anyone figures this out would you please post step by step directions for the tech unsaavy, like me. It looks like there must be an external power source for the keyboard. I'd love to do this, too.

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...

Needed help with an interesting Problem.

So, where should i start. I needed someone who's really into android to help me with a certain problem. I'm a tattoo artist, using a german made Tattoo Touch power supply. This is basically a power box with an android tablet as a control unit, they are connected via bluetooth. I attach a photo of it. The control tablet is a cheap kt712a device, with a really low resolution of 1024x600. I extracted the Tattoo touch apk, installed on my 7x to see if i can use that also as a contol unit. I can, it works, but the user interface maybe because the different resolutions, is completely messed up. The buttons are all over, etc. Everything works tho. My question is, would it be possible to somehow adjust the dpi, resolution or whatever to get the perfect interface on my 7x too? I hope i could explain my problem properly. Thanks for any help in advance!
http://www.kwadron.pl/product/image/6816/tattootouch_tablet_box.jpg

3D render

HI All,
I have had a look around on the internet and been largely unable to find anything. I would like to make a custom 3d printed case for my phone and the easiest way to do this would be to start with a 3d rendered model of the phone (preferably in stl or obj format). I was just wondering if anyone out there might know where to find such a thing?
Many thanks,
wraypa1

Categories

Resources