sim900: Fix order of dlc prefixes

The order of the defines for the dlc prefixes does not match
the order of the array containing the strings to print.
This commit is contained in:
Jesper Larsen 2013-07-17 09:14:15 +02:00 committed by Denis Kenzior
parent 0bc4e32db1
commit cf031b11f9
1 changed files with 5 additions and 5 deletions

View File

@ -49,11 +49,11 @@
#define NUM_DLC 5
#define SETUP_DLC 0
#define VOICE_DLC 1
#define NETREG_DLC 2
#define SMS_DLC 3
#define GPRS_DLC 4
#define VOICE_DLC 0
#define NETREG_DLC 1
#define SMS_DLC 2
#define GPRS_DLC 3
#define SETUP_DLC 4
static char *dlc_prefixes[NUM_DLC] = { "Voice: ", "Net: ", "SMS: ",
"GPRS: " , "Setup: "};