Changes between Initial Version and Version 1 of talk_to_hboot


Ignore:
Timestamp:
11/30/10 10:23:12 (13 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • talk_to_hboot

    v1 v1  
     1= Talking to hboot - and the AT-Command processor =
     2== start hboot ==
     3Start hboot by holding the Vol-Down Key while powering on the phone.
     4
     5== start rtask c in hboot ==
     6
     7Plug your phone into your computer, and in a terminal, type the following:
     8
     9On your computer:
     10{{{
     11sudo modprobe -r usbserial
     12sudo modprobe usbserial vendor=0x0BB4 product=0x0C94
     13sudo screen /dev/ttyUSB0
     14
     15rtask c
     16}}}
     17
     18This will terminate your console session and change the USB-ID of your phone.
     19
     20== Talking to the AT-command processor ==
     21Attach the serial to the new USB-device
     22
     23On your computer:
     24{{{
     25sudo modprobe -r usbserial
     26sudo modprobe usbserial vendor=0x05c6 product=0x9002
     27sudo screen /dev/ttyUSB2
     28}}}
     29
     30The following is an example to verify radio S-OFF. The commands are mixed with the answers. You only type the commands the start with AT.
     31{{{
     32ATE1
     33ATV1
     34AT@CID?
     35@CID: 11111111
     36
     37OK
     38AT@SIMLOCK?AA
     39@secu_flag: 0
     40
     41AT@SIMLOCK?40
     42@SIMLOCK: 00
     43
     44OK
     45}}}