Recent content by reinsn

  1. R

    Post [DISCONTINUED][ROM][UNOFFICIAL][UBERTC/linaro]nvertigo-cm-12.1 for SM-T800 16gb

    I never intended to blame the ROM. I really like your work. Just wanted to point people with the same issue to a quick solution as it took me a while to figure out.
  2. R

    Post [DISCONTINUED][ROM][UNOFFICIAL][UBERTC/linaro]nvertigo-cm-12.1 for SM-T800 16gb

    you need a reboot after placing the library. Its fixing the stock AOSP keyboard gesture typing.
  3. R

    Post [DISCONTINUED][ROM][UNOFFICIAL][UBERTC/linaro]nvertigo-cm-12.1 for SM-T800 16gb

    If anybody else is missing gesture typing in the 20151118 ROM: libjni_latinimegoogle.so is missing. You can manually copy it to /system/lib Here you can find a compatible version: http://www.mediafire.com/?pb2wd2s892q2v3n
  4. R

    Post [Q] Building a serial UART cable for I9300 / which voltage

    I read about a more privileged instruction set available when using UART, but was not yet able to see any difference. Only difference I noticed UART-connection is stable and USB modem connection breaks when screen goes off.
  5. R

    Post [Q] Building a serial UART cable for I9300 / which voltage

    Thank you for your information. I already found the infos I was searching for and made a guide: http://forum.xda-developers.com/galaxy-s3/general/info-i9300-uart-guide-how-to-talk-to-t2928854. The TTL levels on UARTs serial line are 3,3V.
  6. R

    Post [INFO][R&D] I9300 UART and NVDATA guide

    The data at 0x180004 to 0x180033 in nv_data.bin seems to be related to the AT+MSLSECUR command: AT+MSLSECUR=1,0 on a phone with undamaged /efs responds the serial number: AT+MSLSECUR=1,0 +MSLSECUR:1,RFXXXXXX if you copy these offsets from undamaged /efs to another phone the data gets...
  7. R

    Post [INFO][R&D] I9300 UART and NVDATA guide

    nice one...but you have to stop ril-daemon on device before replacing or it will revert to nv_data.bin from backup: stop ril-daemon
  8. R

    Post [INFO][R&D] I9300 UART and NVDATA guide

    nv_data.bin If you attempt to change the nv_data.bin within Android it will get restored from .nv_data.bak and .nv_core.bak. It is protected by a special MD5-hash which is stored in nv_data.bin.md5/.nv_data.bak.md5/.nv_core.bak.m5. The MD5-hash is generated from nv_data.bin, but can not be...
  9. R

    Post [INFO][R&D] I9300 UART and NVDATA guide

    Some related technical infos EFS: The modem stores its settings in your /efs partition (mmcblk0p3), more precisely in your nv_data.bin file. It might be wise to do a backup. (More information on EFS) Modem Firmware: Your modem is running a Real Time Operation System (RTOS) named ThreadX. It...
  10. R

    Post [INFO][R&D] I9300 UART and NVDATA guide

    Supported AT commands on the I9300 Please take this warning serious! As this is a debugging console to your baseband/modem the wrong command can easily overwrite vital data on you phone. Think before typing! I won't go into detail about AT command syntax here. I recommend to read the following...
  11. R

    Thread [INFO][R&D] I9300 UART and NVDATA guide

    During the last weeks I was researching how to build a cable to establish an UART connection to my I9300. This guide should work but is still work in progress. Feel free to contribute. Info: this is a guide for the international version I9300 with XMM6260 modem. The SGH-I747-variant uses a...
  12. R

    Post [Q] Building a serial UART cable for I9300 / which voltage

    Sorry you misunderstood me. I don't want to interface a serial console from my i9300. I want to interface the i9300 itself. Anyway I'll order a controller which supports both 3,3V and 5V TTL levels. If I find out by myself I'll post the solution here. If anybody knows by experience the answer...
  13. R

    Post [Q] Building a serial UART cable for I9300 / which voltage

    This is what i want to use, but it supports TTL levels 3,3 and 5V. Which are you using for your SGS2?
  14. R

    Thread [Q] Building a serial UART cable for I9300 / which voltage

    I'm trying to build an UART/USB-Cable for my I9300 I found conflicting information about the voltage. Some sorces say to use an converter with 3,3V others 5V. Can anybody tell me what's correct? Any additional links to information about UART/Serial console/which USB Controller in I9300 would...