summaryrefslogtreecommitdiff
path: root/openpicc
diff options
context:
space:
mode:
authorhenryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2008-02-09 18:04:21 +0000
committerhenryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2008-02-09 18:04:21 +0000
commit50a134ace94344d1ff083778f1a91fe0851731e4 (patch)
tree5d7ab1e4b2295159e31e748fd10b011fe21aad1e /openpicc
parent6be69f0de0c5455758c7ab3a6a3c7d37a061e5fa (diff)
Remove old OpenBeacon remnants
git-svn-id: https://svn.openpcd.org:2342/trunk@409 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpicc')
-rw-r--r--openpicc/application/cmd.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/openpicc/application/cmd.c b/openpicc/application/cmd.c
index 5fe143b..7fa6196 100644
--- a/openpicc/application/cmd.c
+++ b/openpicc/application/cmd.c
@@ -184,22 +184,6 @@ void prvExecCommand(u_int32_t cmd, portCHAR *args) {
// Note: Commands have been uppercased when this code is called
switch(cmd)
{
- case '4':
- case '3':
- case '2':
- case '1':
- env.e.mode=cmd-'0';
- DumpStringToUSB(" * Switched to transmit mode at power level ");
- DumpUIntToUSB(env.e.mode);
- DumpStringToUSB("\n\r");
- break;
- case 'S':
- env_store();
- DumpStringToUSB(" * Stored environment variables\n\r");
- break;
- case '0':
- DumpStringToUSB(" * switched to RX mode\n\r");
- break;
case 'TEST':
DumpStringToUSB("Testing critical sections\r\n");
j=ulCriticalNesting;
@@ -218,15 +202,6 @@ void prvExecCommand(u_int32_t cmd, portCHAR *args) {
DumpUIntToUSB(j);
DumpStringToUSB("\n\r");
break;
- case 'I':
- i=atoiEx(args, &args);
- if(i!=0) {
- env.e.reader_id = i;
- DumpStringToUSB("Reader ID set to ");
- DumpUIntToUSB(env.e.reader_id);
- DumpStringToUSB("\n\r");
- }
- break;
case 'Z':
i=atoiEx(args, &args);
if(i==0) {
@@ -413,14 +388,11 @@ void prvExecCommand(u_int32_t cmd, portCHAR *args) {
" * Version " COMPILE_SVNREV "\n\r"
" * compiled " COMPILE_DATE " by " COMPILE_BY "\n\r"
" *\n\r"
- " * s - store transmitter settings\n\r"
" * test - test critical sections\n\r"
#if ( configUSE_TRACE_FACILITY == 1 )
" * t - print task list and stack usage\n\r"
#endif
" * c - print configuration\n\r"
- " * 0 - receive only mode\n\r"
- " * 1..4 - automatic transmit at selected power levels\n\r"
" * +,- - decrease/increase comparator threshold\n\r"
" * l - cycle LEDs\n\r"
" * p - print PIO pins\n\r"
personal git repositories of Harald Welte. Your mileage may vary