Changeset 3293
- Timestamp:
- 10/27/07 13:42:07 (6 years ago)
- File:
-
- 1 edited
-
trunk/src/host/qemu-neo1973/openmoko/neo1973.xml (modified) (23 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/host/qemu-neo1973/openmoko/neo1973.xml
r3292 r3293 36 36 37 37 <!-- Signal Quality --> 38 <set name="SQ" value="3 2,99"/>38 <set name="SQ" value="31,99"/> 39 39 40 40 <!-- Manufacturer --> … … 48 48 49 49 <!-- Serial number --> 50 <set name="GSN" value=" 1234567890"/>50 <set name="GSN" value="354651010000000"/> 51 51 52 52 <!-- SIM card id --> 53 <set name="IMI" value=" 354651010000000"/>53 <set name="IMI" value="262074992516579"/> 54 54 55 55 <!-- Identifier for ATI command --> … … 145 145 <!-- Calling line identification restriction flag --> 146 146 <set name="LIR" value="0"/> 147 <set name="LIR_STATUS" value=" 3"/>147 <set name="LIR_STATUS" value="2"/> 148 148 149 149 <!-- Originating line identification presentation flag --> … … 208 208 <!-- Name of the PIN that is required (eg. "PIN") --> 209 209 <!-- For the moment DON'T set a pinname here. We don't want a PIN shipped with the release --> 210 <!-- Neo: SIM PIN --> 210 211 <!-- READY: PIN/PUK not required; SIM PIN: PIN required; SIM PUK: PUK REQUIRED --> 211 212 <set name="PINNAME" value="READY"/> … … 242 243 <set name="CBDCSS" value="3,4"/> 243 244 245 <!-- Sidetone Level --> 246 <set name="ST" value="-5"/> 247 244 248 <!-- Broadcast a cell location --> 245 249 … … 310 314 <!-- Get serial number --> 311 315 <command>AT+CGSN</command> 312 <response> ${GSN}\nOK</response>316 <response>IMEI: ${GSN}\nOK</response> 313 317 </chat> 314 318 … … 322 326 <!-- Get serial number, V.25ter version --> 323 327 <command>AT+GSN</command> 324 <response> ${GSN}\nOK</response>328 <response>IMEI: ${GSN}\nOK</response> 325 329 </chat> 326 330 … … 359 363 <!-- Query current wireless network (GSM = 12) --> 360 364 <command>AT+WS46?</command> 361 <response> 12\nOK</response>365 <response>+WS46: 12\nOK</response> 362 366 </chat> 363 367 … … 365 369 <!-- Query all supported wireless network types --> 366 370 <command>AT+WS46=?</command> 367 <response> (12)\nOK</response>371 <response>+WS46: (12)\nOK</response> 368 372 </chat> 369 373 … … 379 383 <!-- Query current type of address (local = 129, international = 145) --> 380 384 <command>AT+CSTA?</command> 381 <response> ${STA}\nOK</response>385 <response>+CSTA: ${STA}\nOK</response> 382 386 </chat> 383 387 … … 385 389 <!-- Query supported address types --> 386 390 <command>AT+CSTA=?</command> 387 <response> (129,145)\nOK</response>391 <response>+CSTA: (129,145)\nOK</response> 388 392 </chat> 389 393 … … 845 849 <response>+CGREG: ${GREG},0\nOK</response> 846 850 </chat> 847 848 851 <chat> 849 852 <!-- Query GPRS network registration result code presentation types --> … … 851 854 <response>+CGREG: (0-2)\nOK</response> 852 855 </chat> 853 854 856 <chat> 855 857 <!-- Set GPRS network registration result code presentation --> 856 858 <command>AT+CGREG=*</command> 859 <response>OK</response> 860 <set name="GREG" value="*"/> 861 </chat> 862 <chat> 863 <!-- Query GPRS network registration result code presentation --> 864 <command>AT%CGREG?</command> 865 <response>%CGREG: ${GREG},0\nOK</response> 866 </chat> 867 <chat> 868 <!-- Query GPRS network registration result code presentation types --> 869 <command>AT%CGREG=?</command> 870 <response>%CGREG: (0-3)\nOK</response> 871 </chat> 872 <chat> 873 <!-- Set GPRS network registration result code presentation --> 874 <command>AT%CGREG=*</command> 857 875 <response>OK</response> 858 876 <set name="GREG" value="*"/> … … 1053 1071 <!-- Query available facility locks --> 1054 1072 <command>AT+CLCK=?</command> 1055 <response>+CLCK: PS(8),SC(8)\nOK</response>1073 <response>+CLCK: ("SC","AO","OI","OX","AI","IR","AB","AG","AC","FD","PS","PN","PU","PP","PC","PF","AL")\nOK</response> 1056 1074 </chat> 1057 1075 … … 1580 1598 <!-- Query supported unstructured supplementary presentation modes --> 1581 1599 <command>AT+CUSD=?</command> 1582 <response>+CUSD: (0,1 )\nOK</response>1600 <response>+CUSD: (0,1,2)\nOK</response> 1583 1601 </chat> 1584 1602 … … 1772 1790 1773 1791 <chat> 1774 <!-- Query signal quality (default reported as "not detectable")-->1792 <!-- Query signal quality --> 1775 1793 <command>AT+CSQ</command> 1776 1794 <response>+CSQ: ${SQ}\nOK</response> 1777 1795 </chat> 1778 1779 1796 <chat> 1780 1797 <!-- Query supported signal quality values --> 1781 1798 <command>AT+CSQ=?</command> 1782 <response>+CSQ: (0-31,99),(0-7,99)\nOK</response> 1799 <response>+CSQ: (2-31,99),(99),(99)\nOK</response> 1800 </chat> 1801 <chat> 1802 <!-- Query signal quality --> 1803 <command>AT%CSQ?</command> 1804 <response>%CSQ: 31, 99, 0\nOK</response> 1805 </chat> 1806 <chat> 1807 <!-- Query supported signal quality values --> 1808 <command>AT%CSQ=?</command> 1809 <response>%CSQ: (99), (99), 0-4\nOK</response> 1783 1810 </chat> 1784 1811 … … 1816 1843 <chat> 1817 1844 <!-- Indicator control (ignored in this version) --> 1845 <command>AT+CIND?</command> 1846 <response>+CIND: 0,0\nOK</response> 1847 </chat> 1848 <chat> 1849 <command>AT+CIND=?</command> 1850 <response>+CIND: ("signal", (0-5)), ("smsfull", (0-1))\nOK</response> 1851 </chat> 1852 <chat> 1818 1853 <command>AT+CIND*</command> 1819 1854 <response>OK</response> … … 1829 1864 <!-- Query supported mobile equipment event reporting modes --> 1830 1865 <command>AT+CMER=?</command> 1831 <response>+CMER: (0- 3),(0-2),(0-2),(0-2),(0-1)\nOK</response>1866 <response>+CMER: (0-2), (0), (0), (0-2), (0,1)\nOK</response> 1832 1867 </chat> 1833 1868 … … 2216 2251 2217 2252 <chat> 2218 <!-- Modem identifier -->2253 <!-- Modem identifier (not supported? o_0 ) --> 2219 2254 <command>ATI</command> 2220 <response> ${ID}\nOK</response>2255 <response>ERROR</response> 2221 2256 </chat> 2222 2257 … … 2246 2281 2247 2282 <chat> 2248 <!-- Country of installation -->2249 <command>AT+GCI</command>2250 <response>Warsaw\nOK</response>2251 </chat>2252 2253 <chat>2254 <!-- Global object identification (ignored) -->2255 <command>AT+GOI</command>2256 <response>OK</response>2257 </chat>2258 2259 <chat>2260 2283 <!-- Character framing (ignored) --> 2261 2284 <command>AT+ICF*</command> … … 2314 2337 <chat> 2315 2338 <command>AT%CPI=?</command> 2316 <response>%CPI: (0- 3)\nOK</response>2339 <response>%CPI: (0-4)\nOK</response> 2317 2340 </chat> 2318 2341 <chat> … … 2324 2347 <response>OK</response> 2325 2348 <set name="CPI" value="*"/> 2349 </chat> 2350 2351 <chat> 2352 <command>AT%CPINF=?</command> 2353 <response>OK</response> 2354 </chat> 2355 2356 <chat> 2357 <command>AT%CGMM=?</command> 2358 <response>%CGMM: (0,1),(0,1)\nOK</response> 2359 </chat> 2360 2361 <chat> 2362 <command>AT%ALS</command> 2363 <response>ERROR</response> 2364 </chat> 2365 <chat> 2366 <command>AT%ALS?</command> 2367 <response>%ALS: 0\nOK</response> 2368 </chat> 2369 <chat> 2370 <command>AT%ALS=?</command> 2371 <response>%ALS: (0)\nOK</response> 2372 </chat> 2373 <chat> 2374 <command>AT%ALS=0</command> 2375 <response>OK</response> 2376 </chat> 2377 <chat> 2378 <command>AT%ALS=*</command> 2379 <response>ERROR</response> 2380 </chat> 2381 2382 <chat> 2383 <command>AT%ATR</command> 2384 <response>ERROR</response> 2385 </chat> 2386 <chat> 2387 <command>AT%ATR?</command> 2388 <response>%ATR: FFFF\nOK</response> 2389 </chat> 2390 <chat> 2391 <command>AT%ATR=?</command> 2392 <response>OK</response> 2393 </chat> 2394 <chat> 2395 <command>AT%ATR=*</command> 2396 <response>ERROR</response> 2397 </chat> 2398 2399 <chat> 2400 <command>AT%A*</command> 2401 <response>EXT: I 2402 ADC 0 = e19, ADC 1 = 0, ADC 2 = d, ADC 3 = 6ea, ADC 4 = a25, ADC 5 = 9fc, ADC 6 = 96d, ADC 7 = 0, ADC 8 = 6 2403 OK</response> 2404 </chat> 2405 2406 <chat> 2407 <command>AT%NRG?</command> 2408 <response>%NRG: 0,0,,2\nOK</response> 2409 </chat> 2410 2411 <!-- Engineering Mode --> 2412 <chat> 2413 <command>AT%EM=?</command> 2414 <response>%EM: (2-3),(1-13)\nOK</response> 2415 </chat> 2416 2417 <chat> 2418 <command>AT%STDR</command> 2419 <response>%STDR: 6\nOK</response> 2420 </chat> 2421 <chat> 2422 <command>AT%STDR=?</command> 2423 <response>OK</response> 2424 </chat> 2425 2426 <chat> 2427 <command>AT%DATA?</command> 2428 <response>%DATA: 0,,0,0,,,0,0,0\nOK</response> 2429 </chat> 2430 <chat> 2431 <command>AT%DATA=?</command> 2432 <response>%DATA: (0,1,2)\nOK</response> 2433 </chat> 2434 2435 <chat> 2436 <command>AT%DINF=0</command> 2437 <response>%DINF:"UART",0,0,"CMD,SER","CMD",0\nOK</response> 2438 </chat> 2439 <chat> 2440 <command>AT%DINF=1</command> 2441 <response>%DINF:"UART",0,0,"CMD,SER","CMD",0\nOK</response> 2442 </chat> 2443 <chat> 2444 <command>AT%DINF=?</command> 2445 <response>%DINF: (0,1)\nOK</response> 2446 </chat> 2447 2448 <chat> 2449 <command>AT%PVRF?</command> 2450 <response>%PVRF: -1, -1, -1, -1, -1, -1\nOK</response> 2451 </chat> 2452 <chat> 2453 <command>AT%PVRF=?</command> 2454 <response>%PVRF: (0-2)\nOK</response> 2455 </chat> 2456 2457 <chat> 2458 <command>AT%CSSD?</command> 2459 <response>%CSSD: 255\nOK</response> 2460 </chat> 2461 <chat> 2462 <command>AT%CSSD=?</command> 2463 <response>\nOK</response> 2464 </chat> 2465 2466 <chat> 2467 <command>AT%EFRSLT=?</command> 2468 <response>%EFRSLT: (0-1)\nOK</response> 2469 </chat> 2470 <chat> 2471 <command>AT%EFRSLT=0</command> 2472 <response>OK</response> 2473 </chat> 2474 <chat> 2475 <command>AT%EFRSLT=1</command> 2476 <response>OK</response> 2477 </chat> 2478 2479 <!-- Firmware component versions --> 2480 <chat> 2481 <command>AT%VER*</command> 2482 <response>%VER: aci sean non_clearcase 15:11:24 17/04/07 2483 %VER: cc a086 ** NONE ** 10:16:39 28/03/07 2484 %VER: dl a086 ** NONE ** 10:17:34 28/03/07 2485 %VER: mm a086 ** NONE ** 10:23:09 28/03/07 2486 %VER: rr a086 ** NONE ** 10:25:37 28/03/07 2487 %VER: sim a086 ** NONE ** 10:26:45 28/03/07 2488 %VER: sms a086 ** NONE ** 10:27:21 28/03/07 2489 %VER: ss a086 ** NONE ** 10:28:52 28/03/07 2490 %VER: alr a086 ** NONE ** 10:15:48 28/03/07 2491 %VER: l2r a086 ** NONE ** 10:21:37 28/03/07 2492 %VER: ra a086 ** NONE ** 10:25:01 28/03/07 2493 %VER: rlp a086 ** NONE ** 10:25:12 28/03/07 2494 %VER: fad a086 ** NONE ** 10:18:09 28/03/07 2495 %VER: t30 a086 ** NONE ** 10:29:01 28/03/07 2496 OK</reponse> 2497 </chat> 2498 2499 <!-- Sidetone Level --> 2500 <chat> 2501 <command>AT@ST?</command> 2502 <response>+ST: ${ST}\nOK</response> 2503 </chat> 2504 <chat> 2505 <command>AT@ST=?</command> 2506 <response>+ST: (-26,-23,-20,-17,-14,-11,-8,-5,-2,1)\nOK</response> 2507 </chat> 2508 <chat> 2509 <command>AT@ST="*"</command> 2510 <response>OK</response> 2511 <set name="ST" value="*"/> 2512 </chat> 2513 2514 <!-- Audio Table Load --> 2515 <chat> 2516 <command>AT@AUL?</command> 2517 <response>@AUL:\nOK</response> 2518 </chat> 2519 <chat> 2520 <command>AT@AUL=?</command> 2521 <response>@AUL: (0)\nOK</response> 2522 </chat> 2523 <chat> 2524 <command>AT@AUL="0"</command> 2525 <response>OK</response> 2526 </chat> 2527 2528 <!-- Power off --> 2529 <chat> 2530 <command>AT@POFF</command> 2531 <response>ERROR</response> 2326 2532 </chat> 2327 2533 … … 2667 2873 +GMM 2668 2874 +GMR 2669 +GOI2670 2875 +GSN 2671 2876 +ICF
Note: See TracChangeset
for help on using the changeset viewer.
