FreeCalypso > hg > freecalypso-sw
annotate target-utils/pirexplore/cmdtab.c @ 264:0c938d8b5ba3
fc-tmsh: set-pcm-string and set-rfcap implemented
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Wed, 05 Feb 2014 10:19:21 +0000 | 
| parents | 9539929b3414 | 
| children | e60aecf23970 | 
| rev | line source | 
|---|---|
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 1 #include "cmdtab.h" | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 2 | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 3 extern void cmd_baud_switch(); | 
| 104 
f65df1d640aa
pirexplore: approaching sanity with the LCD
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
101diff
changeset | 4 extern void cmd_blit(); | 
| 69 
8387dcba945d
pirexplore: dieid command implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
67diff
changeset | 5 extern void cmd_dieid(); | 
| 101 
7029fe8ae0bc
pirexplore: FFS find command implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
100diff
changeset | 6 extern void cmd_find(); | 
| 206 
9539929b3414
pirexplore: flashid command implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
202diff
changeset | 7 extern void cmd_flashid(); | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 8 extern void cmd_jump(); | 
| 78 
2c266d4339ff
pirexplore: lcdfill implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
77diff
changeset | 9 extern void cmd_lcdfill(); | 
| 77 
fcbe1332b197
pirexplore: LCD init and BL control work now
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
76diff
changeset | 10 extern void cmd_lcdinit(); | 
| 202 
b26b7459bd44
pirexplore: lcdramp command renamed to lcdtest: the bars aren't a ramp
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
196diff
changeset | 11 extern void cmd_lcdtest(); | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 12 extern void cmd_r8(); | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 13 extern void cmd_r16(); | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 14 extern void cmd_r32(); | 
| 72 
92c1ed6b4b67
pirexplore: RTC read implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
69diff
changeset | 15 extern void cmd_rtc(); | 
| 73 
c54c6ad1c66f
pirexplore: added rtccomp command to read RTC compensation registers
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
72diff
changeset | 16 extern void cmd_rtccomp(); | 
| 74 
8138a6380ae3
pirexplore: attempt to play with SPCA552E
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
73diff
changeset | 17 extern void cmd_spca(); | 
| 76 
07b686248ab7
pirexplore: finally got the backlight to turn on
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
74diff
changeset | 18 extern void cmd_spcainit(); | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 19 extern void cmd_w8(); | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 20 extern void cmd_w16(); | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 21 extern void cmd_w32(); | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 22 | 
| 196 
3daa8ebbe74d
pirexplore: a bit of refactoring
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
104diff
changeset | 23 extern void cmd_memdump_human(); | 
| 100 
02ece4d8c755
pirexplore: beginning of FFS support
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
78diff
changeset | 24 extern void mpffs_init(); | 
| 
02ece4d8c755
pirexplore: beginning of FFS support
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
78diff
changeset | 25 | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 26 const struct cmdtab cmdtab[] = { | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 27 {"baud", cmd_baud_switch}, | 
| 104 
f65df1d640aa
pirexplore: approaching sanity with the LCD
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
101diff
changeset | 28 {"blit", cmd_blit}, | 
| 69 
8387dcba945d
pirexplore: dieid command implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
67diff
changeset | 29 {"dieid", cmd_dieid}, | 
| 196 
3daa8ebbe74d
pirexplore: a bit of refactoring
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
104diff
changeset | 30 {"dump", cmd_memdump_human}, | 
| 100 
02ece4d8c755
pirexplore: beginning of FFS support
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
78diff
changeset | 31 {"ffsinit", mpffs_init}, | 
| 101 
7029fe8ae0bc
pirexplore: FFS find command implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
100diff
changeset | 32 {"find", cmd_find}, | 
| 206 
9539929b3414
pirexplore: flashid command implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
202diff
changeset | 33 {"flashid", cmd_flashid}, | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 34 {"jump", cmd_jump}, | 
| 78 
2c266d4339ff
pirexplore: lcdfill implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
77diff
changeset | 35 {"lcdfill", cmd_lcdfill}, | 
| 77 
fcbe1332b197
pirexplore: LCD init and BL control work now
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
76diff
changeset | 36 {"lcdinit", cmd_lcdinit}, | 
| 202 
b26b7459bd44
pirexplore: lcdramp command renamed to lcdtest: the bars aren't a ramp
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
196diff
changeset | 37 {"lcdtest", cmd_lcdtest}, | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 38 {"r8", cmd_r8}, | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 39 {"r16", cmd_r16}, | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 40 {"r32", cmd_r32}, | 
| 72 
92c1ed6b4b67
pirexplore: RTC read implemented
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
69diff
changeset | 41 {"rtc", cmd_rtc}, | 
| 73 
c54c6ad1c66f
pirexplore: added rtccomp command to read RTC compensation registers
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
72diff
changeset | 42 {"rtccomp", cmd_rtccomp}, | 
| 74 
8138a6380ae3
pirexplore: attempt to play with SPCA552E
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
73diff
changeset | 43 {"spca", cmd_spca}, | 
| 76 
07b686248ab7
pirexplore: finally got the backlight to turn on
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: 
74diff
changeset | 44 {"spcainit", cmd_spcainit}, | 
| 67 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 45 {"w8", cmd_w8}, | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 46 {"w16", cmd_w16}, | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 47 {"w32", cmd_w32}, | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 48 {0, 0} | 
| 
b8f335553000
pirexplore utility started
 Michael Spacefalcon <msokolov@ivan.Harhan.ORG> parents: diff
changeset | 49 }; | 
