Subversion Repositories svnkaklik

Rev

Rev 876 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 876 Rev 877
1
#include <16F887.h>
1
#include <16F887.h>
2
#device *=16
2
#device *=16
3
#device adc=8
3
#device adc=8
4
#device PASS_STRINGS=IN_RAM
4
#device PASS_STRINGS=IN_RAM
5
#zero_ram
5
#zero_ram
6
#FUSES NOWDT                     //No Watch Dog Timer
6
#FUSES NOWDT                     //No Watch Dog Timer
7
#FUSES INTRC_IO                  //Internal RC Osc, no CLKOUT
7
#FUSES INTRC_IO                  //Internal RC Osc, no CLKOUT
8
#FUSES PUT                       //Power Up Timer
8
#FUSES PUT                       //Power Up Timer
9
#FUSES MCLR                      //Master Clear pin enabled
9
#FUSES MCLR                      //Master Clear pin enabled
10
#FUSES NOPROTECT                 //Code protected from reads
10
#FUSES NOPROTECT                 //Code protected from reads
11
#FUSES NOCPD                     //No EE protection
11
#FUSES NOCPD                     //No EE protection
12
#FUSES BROWNOUT                  //Reset when brownout detected
12
#FUSES BROWNOUT                  //Reset when brownout detected
13
#FUSES NOIESO                    //Internal External Switch Over mode disabled
13
#FUSES NOIESO                    //Internal External Switch Over mode disabled
14
#FUSES NOFCMEN                   //Fail-safe clock monitor disabled
14
#FUSES NOFCMEN                   //Fail-safe clock monitor disabled
15
#FUSES NOLVP                     //No low voltage prgming, B3(PIC16) or B5(PIC18) used for I/O
15
#FUSES NOLVP                     //No low voltage prgming, B3(PIC16) or B5(PIC18) used for I/O
16
#FUSES NODEBUG                   //No Debug mode for ICD
16
#FUSES NODEBUG                   //No Debug mode for ICD
17
#FUSES NOWRT                     //Program memory not write protected
17
#FUSES NOWRT                     //Program memory not write protected
18
#FUSES BORV21                    //Brownout reset at 2.1V
18
#FUSES BORV21                    //Brownout reset at 2.1V
19
#use delay(clock=8000000,RESTART_WDT)
19
#use delay(clock=8000000,RESTART_WDT)
20
//#use rs232(baud=9600,parity=N,xmit=TXD,rcv=RXD,bits=8,errors)
20
//#use rs232(baud=9600,parity=N,xmit=TXD,rcv=RXD,bits=8,errors)
21
#use rs232(baud=9600,parity=N,xmit=PIN_B7,rcv=PIN_B6,bits=8)
21
#use rs232(baud=9600,parity=N,xmit=PIN_B7,rcv=PIN_B6,bits=8)
22
 
22
 
23
 
23
 
24
/*$F*************************************************************************
24
/*$F*************************************************************************
25
*
25
*
26
* Copyright (C)pa 2004 Mark Norton
26
* Copyright (C)pa 2004 Mark Norton
27
*
27
*
28
* Permission is hereby granted, free of charge, to any person obtaining
28
* Permission is hereby granted, free of charge, to any person obtaining
29
* a copy of this software and associated documentation files (the
29
* a copy of this software and associated documentation files (the
30
* "Software"), to deal in the Software without restriction, including
30
* "Software"), to deal in the Software without restriction, including
31
* without limitation the rights to use, copy, modify, merge, publish,
31
* without limitation the rights to use, copy, modify, merge, publish,
32
* distribute, sublicense, and/or sell copies of the Software, and to
32
* distribute, sublicense, and/or sell copies of the Software, and to
33
* permit persons to whom the Software is furnished to do so, subject to
33
* permit persons to whom the Software is furnished to do so, subject to
34
* the following conditions:
34
* the following conditions:
35
*
35
*
36
* The above copyright notice and this permission notice shall be included
36
* The above copyright notice and this permission notice shall be included
37
* in all copies or substantial portions of the Software.
37
* in all copies or substantial portions of the Software.
38
*
38
*
39
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
40
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
40
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
41
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
42
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
42
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
43
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
43
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
44
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
44
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
45
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
46
*
46
*
47
* Functional
47
* Functional
48
* Description:  Implementation of sscanf() function for the CCS compiler
48
* Description:  Implementation of sscanf() function for the CCS compiler
49
*
49
*
50
*****************************************************************************/
50
*****************************************************************************/
51
#include <string.h>
51
#include <string.h>
52
#include <stdlib.h>
52
#include <stdlib.h>
53
 
53
 
54
/* Uncomment any of these to reduce the code size
54
/* Uncomment any of these to reduce the code size
55
   Note that the HEX is a big hog
55
   Note that the HEX is a big hog
56
*/
56
*/
57
#define NO_FLOAT
57
#define NO_FLOAT
58
// #define NO_INT
58
// #define NO_INT
59
// #define NO_SIGNED_INT
59
// #define NO_SIGNED_INT
60
// #define NO_STRING
60
// #define NO_STRING
61
// #define NO_HEX
61
// #define NO_HEX
62
 
62
 
63
/* *************************************************************************
63
/* *************************************************************************
64
  DESCRIPTION:  Converts string pointed to by s to an unsigned long (16 bit)
64
  DESCRIPTION:  Converts string pointed to by s to an unsigned long (16 bit)
65
  RETURN: result of the conversion
65
  RETURN: result of the conversion
66
  ALGORITHM:  none
66
  ALGORITHM:  none
67
  NOTES:  the next position in the string is returned in endptr
67
  NOTES:  the next position in the string is returned in endptr
68
 *************************************************************************** */
68
 *************************************************************************** */
69
long my_atoul(char *s, char *endptr, int base)
69
long my_atoul(char *s, char *endptr, int base)
70
{
70
{
71
  signed long result;
71
  signed long result;
72
  int index;
72
  int index;
73
  char c;
73
  char c;
74
 
74
 
75
  index = 0;
75
  index = 0;
76
  result = 0;
76
  result = 0;
77
  *endptr = s;
77
  *endptr = s;
78
 
78
 
79
  if (( !s ) || ( !*s ))
79
  if (( !s ) || ( !*s ))
80
    return ( 0 );
80
    return ( 0 );
81
 
81
 
82
  c = *s;
82
  c = *s;
83
 
83
 
84
  // increase index if positive sign is detected
84
  // increase index if positive sign is detected
85
  if (c == '+')
85
  if (c == '+')
86
  {
86
  {
87
    c = *(++s);
87
    c = *(++s);
88
  }
88
  }
89
 
89
 
90
  // The number is a decimal number
90
  // The number is a decimal number
91
  if (base == 10)
91
  if (base == 10)
92
  {
92
  {
93
    while (c >= '0' && c <= '9')
93
    while (c >= '0' && c <= '9')
94
    {
94
    {
95
      result = 10*result + (c - '0');
95
      result = 10*result + (c - '0');
96
      c = *(++s);
96
      c = *(++s);
97
    }
97
    }
98
  }
98
  }
99
  else if (base == 16)    // The number is a hexa number
99
  else if (base == 16)    // The number is a hexa number
100
  {
100
  {
101
    if (c == '0' && (*(s+1) == 'x' || *(s+1) == 'X'))
101
    if (c == '0' && (*(s+1) == 'x' || *(s+1) == 'X'))
102
    {
102
    {
103
      s += 2;
103
      s += 2;
104
      c = *s;
104
      c = *s;
105
    }
105
    }
106
 
106
 
107
    c = toupper(c);
107
    c = toupper(c);
108
    while ( 1 )
108
    while (true)
109
    {
109
    {
110
      if (c >= '0' && c <= '9')
110
      if (c >= '0' && c <= '9')
111
        result = (result << 4) + (c - '0');
111
        result = (result << 4) + (c - '0');
112
      else if (c >= 'A' && c <='F')
112
      else if (c >= 'A' && c <='F')
113
        result = (result << 4) + (c - 'A' + 10);
113
        result = (result << 4) + (c - 'A' + 10);
114
      else
114
      else
115
        break;
115
        break;
116
      c = toupper(*(++s));
116
      c = toupper(*(++s));
117
    }
117
    }
118
  }
118
  }
119
  *endptr = s;
119
  *endptr = s;
120
  return(result);
120
  return(result);
121
}
121
}
122
 
122
 
123
/* *************************************************************************
123
/* *************************************************************************
124
  DESCRIPTION:  Converts string pointed to by s to a float
124
  DESCRIPTION:  Converts string pointed to by s to a float
125
  RETURN: result of the conversion
125
  RETURN: result of the conversion
126
  ALGORITHM:  none
126
  ALGORITHM:  none
127
  NOTES:  the next position in the string is returned in endptr
127
  NOTES:  the next position in the string is returned in endptr
128
 *************************************************************************** */
128
 *************************************************************************** */
129
float my_atof(char * s, char *endptr)
129
float my_atof(char * s, char *endptr)
130
{
130
{
131
  float pow10 = 1.0;
131
  float pow10 = 1.0;
132
  float result = 0.0;
132
  float result = 0.0;
133
  int sign = 0;
133
  int sign = 0;
134
  char c;
134
  char c;
135
 
135
 
136
  c = *s;
136
  c = *s;
137
 
137
 
138
  if(c == '-')
138
  if(c == '-')
139
  {
139
  {
140
    sign = 1;
140
    sign = 1;
141
    c = *(++s);
141
    c = *(++s);
142
  }
142
  }
143
  else if(c == '+')
143
  else if(c == '+')
144
    c = *(++s);
144
    c = *(++s);
145
 
145
 
146
 
146
 
147
  while((c >= '0' && c <= '9'))
147
  while((c >= '0' && c <= '9'))
148
  {
148
  {
149
    result = 10*result + c - '0';
149
    result = 10*result + c - '0';
150
    c = *(++s);
150
    c = *(++s);
151
  }
151
  }
152
 
152
 
153
  if (c == '.')
153
  if (c == '.')
154
  {
154
  {
155
    c = *(++s);
155
    c = *(++s);
156
    while((c >= '0' && c <= '9'))
156
    while((c >= '0' && c <= '9'))
157
    {
157
    {
158
      pow10 = pow10*10;
158
      pow10 = pow10*10;
159
      result += (c - '0')/pow10;
159
      result += (c - '0')/pow10;
160
      c = *(++s);
160
      c = *(++s);
161
    }
161
    }
162
  }
162
  }
163
 
163
 
164
   if (sign == 1)
164
   if (sign == 1)
165
     result = -1*result;
165
     result = -1*result;
166
 
166
 
167
  *endptr = s;
167
  *endptr = s;
168
  return(result);
168
  return(result);
169
}
169
}
170
 
170
 
171
 
171
 
172
/* *************************************************************************
172
/* *************************************************************************
173
  DESCRIPTION:  Implementation of scanf() using CCS C compiler
173
  DESCRIPTION:  Implementation of scanf() using CCS C compiler
174
  RETURN: total number of arguments read
174
  RETURN: total number of arguments read
175
  ALGORITHM:  none
175
  ALGORITHM:  none
176
  NOTES:  none
176
  NOTES:  none
177
 *************************************************************************** */
177
 *************************************************************************** */
178
int8 sscanf(
178
int8 sscanf(
179
  char  *buf,    /* pointer to the buffer that we are scanning */
179
  char  *buf,    /* pointer to the buffer that we are scanning */
180
  char  *fmt,    /* pointer to the format string */
180
  char  *fmt,    /* pointer to the format string */
181
  char  *pArgs)  /* pointer to array of arguments */
181
  char  *pArgs)  /* pointer to array of arguments */
182
{
182
{
183
 
183
 
184
  int8        count = 0;
184
  int8        count = 0;
185
  char        *p;
185
  char        *p;
186
  int1        size_long;
186
  int1        size_long;
187
  int1        sign;
187
  int1        sign;
188
  char        *endptr;
188
  char        *endptr;
189
 
189
 
190
  while (1)
190
  while (true)
191
  {
191
  {
192
   /* Look to see if we are out of arguments */
192
   /* Look to see if we are out of arguments */
193
   if ( !pArgs )
193
   if ( !pArgs )
194
     return( count );
194
     return( count );
195
 
195
 
196
   /* Gobble up the fmt string */
196
   /* Gobble up the fmt string */
197
    while (*buf == *fmt)
197
    while (*buf == *fmt)
198
    {
198
    {
199
      if ((*buf == 0) || (*fmt == 0))
199
      if ((*buf == 0) || (*fmt == 0))
200
        return (count);
200
        return (count);
201
      buf++;
201
      buf++;
202
      fmt++;
202
      fmt++;
203
    }
203
    }
204
 
204
 
205
    /* Check for the % */
205
    /* Check for the % */
206
    if (*fmt != '%')
206
    if (*fmt != '%')
207
      break;
207
      break;
208
 
208
 
209
    /* fmt should be '%' go to the next character */
209
    /* fmt should be '%' go to the next character */
210
    fmt++;
210
    fmt++;
211
 
211
 
212
    /* get the size modifier */
212
    /* get the size modifier */
213
    switch (*fmt)
213
    switch (*fmt)
214
    {
214
    {
215
      case 'l':
215
      case 'l':
216
      case 'L':
216
      case 'L':
217
        fmt++;
217
        fmt++;
218
        size_long = TRUE;
218
        size_long = TRUE;
219
        break;
219
        break;
220
      default:
220
      default:
221
        size_long = FALSE;
221
        size_long = FALSE;
222
        break;
222
        break;
223
    }
223
    }
224
 
224
 
225
    /* fmt should point to our first conversion letter at this point */
225
    /* fmt should point to our first conversion letter at this point */
226
    switch (*fmt)
226
    switch (*fmt)
227
    {
227
    {
228
#ifndef NO_FLOAT
228
#ifndef NO_FLOAT
229
      case 'f':
229
      case 'f':
230
      case 'F':
230
      case 'F':
231
        /* Get a pointer to this argument */
231
        /* Get a pointer to this argument */
232
        p = (float *)(*pArgs);
232
        p = (float *)(*pArgs);
233
 
233
 
234
        /* convert to a number */
234
        /* convert to a number */
235
        *(float *)p = (float)my_atof(buf, &endptr);
235
        *(float *)p = (float)my_atof(buf, &endptr);
236
 
236
 
237
        /* Make sure that we succeeded */
237
        /* Make sure that we succeeded */
238
        if ( buf == endptr )
238
        if ( buf == endptr )
239
          return ( count );
239
          return ( count );
240
        buf = endptr;
240
        buf = endptr;
241
 
241
 
242
        /* count this one */
242
        /* count this one */
243
        count++;
243
        count++;
244
        break;
244
        break;
245
#endif
245
#endif
246
#ifndef NO_SIGNED_INT
246
#ifndef NO_SIGNED_INT
247
      case 'd':
247
      case 'd':
248
      case 'D':
248
      case 'D':
249
        /* Get a pointer to this argument */
249
        /* Get a pointer to this argument */
250
        p = (signed int8 *)(*pArgs);
250
        p = (signed int8 *)(*pArgs);
251
        if (*buf == '-')
251
        if (*buf == '-')
252
        {
252
        {
253
          buf++;
253
          buf++;
254
          sign = TRUE;
254
          sign = TRUE;
255
        }
255
        }
256
        else
256
        else
257
          sign = FALSE;
257
          sign = FALSE;
258
 
258
 
259
        /* convert to a number */
259
        /* convert to a number */
260
        if ( size_long )
260
        if ( size_long )
261
        {
261
        {
262
          *(signed int16 *)p = (signed int16)my_atoul(buf, &endptr, 10);
262
          *(signed int16 *)p = (signed int16)my_atoul(buf, &endptr, 10);
263
          if (sign)
263
          if (sign)
264
            *(signed int16 *)p = -(*(signed int16 *)p);
264
            *(signed int16 *)p = -(*(signed int16 *)p);
265
        }
265
        }
266
        else
266
        else
267
        {
267
        {
268
          *(signed int8 *)p = (signed int8)my_atoul(buf, &endptr, 10);
268
          *(signed int8 *)p = (signed int8)my_atoul(buf, &endptr, 10);
269
          if (sign)
269
          if (sign)
270
            *(signed int8 *)p = -(*(signed int8 *)p);
270
            *(signed int8 *)p = -(*(signed int8 *)p);
271
        }
271
        }
272
        /* Make sure that we succeeded */
272
        /* Make sure that we succeeded */
273
        if ( buf == endptr )
273
        if ( buf == endptr )
274
          return ( count );
274
          return ( count );
275
        buf = endptr;
275
        buf = endptr;
276
 
276
 
277
        /* count this one */
277
        /* count this one */
278
        count++;
278
        count++;
279
        break;
279
        break;
280
#endif
280
#endif
281
#ifndef NO_INT
281
#ifndef NO_INT
282
      case 'u':
282
      case 'u':
283
      case 'U':
283
      case 'U':
284
        /* Get a pointer to this argument */
284
        /* Get a pointer to this argument */
285
        p = (int8 *)(*pArgs);
285
        p = (int8 *)(*pArgs);
286
 
286
 
287
        /* convert to a number */
287
        /* convert to a number */
288
        if ( size_long )
288
        if ( size_long )
289
          *(int16 *)p = (int16) my_atoul(buf, &endptr, 10);
289
          *(int16 *)p = (int16) my_atoul(buf, &endptr, 10);
290
        else
290
        else
291
          *(int8 *)p = (int8) my_atoul(buf, &endptr, 10);
291
          *(int8 *)p = (int8) my_atoul(buf, &endptr, 10);
292
 
292
 
293
        /* Make sure that we succeeded */
293
        /* Make sure that we succeeded */
294
        if ( buf == endptr )
294
        if ( buf == endptr )
295
          return ( count );
295
          return ( count );
296
        buf = endptr;
296
        buf = endptr;
297
 
297
 
298
        /* count this one */
298
        /* count this one */
299
        count++;
299
        count++;
300
        break;
300
        break;
301
#endif
301
#endif
302
#ifndef NO_STRING
302
#ifndef NO_STRING
303
      case 's':
303
      case 's':
304
        /* Get a pointer to this argument */
304
        /* Get a pointer to this argument */
305
        p = (char *)(*pArgs);
305
        p = (char *)(*pArgs);
306
 
306
 
307
        /* copy the chars */
307
        /* copy the chars */
308
        while (1)
308
        while (true)
309
        {
309
        {
310
          if ((isspace(*buf)) || (!*buf))
310
          if ((isspace(*buf)) || (!*buf))
311
          {
311
          {
312
            *p = 0;
312
            *p = 0;
313
            break;
313
            break;
314
          }
314
          }
315
          else
315
          else
316
          {
316
          {
317
            *p = *buf;
317
            *p = *buf;
318
            p++;
318
            p++;
319
            buf++;
319
            buf++;
320
          }
320
          }
321
        }
321
        }
322
 
322
 
323
        /* count this one */
323
        /* count this one */
324
        count++;
324
        count++;
325
        break;
325
        break;
326
#endif
326
#endif
327
#ifndef NO_HEX
327
#ifndef NO_HEX
328
      case 'x':
328
      case 'x':
329
      case 'X':
329
      case 'X':
330
        /* Get a pointer to this argument */
330
        /* Get a pointer to this argument */
331
        p = (int8 *)(*pArgs);
331
        p = (int8 *)(*pArgs);
332
 
332
 
333
        /* convert to a number */
333
        /* convert to a number */
334
        if ( size_long )
334
        if ( size_long )
335
          *(int16 *)p = (int16) my_atoul(buf, &endptr, 16);
335
          *(int16 *)p = (int16) my_atoul(buf, &endptr, 16);
336
        else
336
        else
337
          *(int8 *)p = (int8) my_atoul(buf, &endptr, 16);
337
          *(int8 *)p = (int8) my_atoul(buf, &endptr, 16);
338
 
338
 
339
        /* Make sure that we succeeded */
339
        /* Make sure that we succeeded */
340
        if ( buf == endptr )
340
        if ( buf == endptr )
341
          return ( count );
341
          return ( count );
342
        buf = endptr;
342
        buf = endptr;
343
 
343
 
344
        /* count this one */
344
        /* count this one */
345
        count++;
345
        count++;
346
        break;
346
        break;
347
#endif
347
#endif
348
      /* unhandled format specifier */
348
      /* unhandled format specifier */
349
      default:
349
      default:
350
        return (count);
350
        return (count);
351
    }
351
    }
352
    /* Technically this is incorrect but since the size of all pointers
352
    /* Technically this is incorrect but since the size of all pointers
353
       are the same, who cares ;)
353
       are the same, who cares ;)
354
 
354
 
355
       point to the next argument
355
       point to the next argument
356
    */
356
    */
357
    pArgs += sizeof(char *);
357
    pArgs += sizeof(char *);
358
   
358
   
359
    /* Move to the next format char */
359
    /* Move to the next format char */
360
    fmt++;
360
    fmt++;
361
  }
361
  }
362
 
362
 
363
  return (count);
363
  return (count);
364
}
364
}
365
 
365
 
366
 
366
 
367
 
367
 
368
void main() {
368
void main() {
369
    char x;
369
    char x;
370
    char sbuffer[64];
370
    char sbuffer[64];
371
    char cmd=0,param=0;
371
    char cmd=0,param=0;
372
    long l;
372
    
-
 
373
    char arglist[2];
-
 
374
   arglist[0] = &cmd;   
-
 
375
   arglist[1] = &param;
-
 
376
 
373
 
377
 
374
    set_tris_a(0x80);
378
    set_tris_a(0x80);
375
    port_b_pullups(0xFF);
379
    port_b_pullups(0xFF);
376
    set_tris_b(0xFF);
380
    set_tris_b(0xFF);
377
    set_tris_d(0);
381
    set_tris_d(0);
378
    set_tris_e(0x01);
382
    set_tris_e(0x01);
379
    setup_oscillator(OSC_8MHZ);
383
    setup_oscillator(OSC_8MHZ);
380
    setup_adc_ports(sAN5|VSS_VDD);
384
    setup_adc_ports(sAN5|VSS_VDD);
381
    setup_adc(ADC_CLOCK_INTERNAL);
385
    setup_adc(ADC_CLOCK_INTERNAL);
382
    set_adc_channel(5);
386
    set_adc_channel(5);
383
    setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
387
    setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
384
    setup_timer_1(T1_INTERNAL|T1_DIV_BY_2);
388
    setup_timer_1(T1_INTERNAL|T1_DIV_BY_2);
385
    setup_timer_2(T2_DIV_BY_16, 155, 1);
389
    setup_timer_2(T2_DIV_BY_16, 155, 1);
386
    setup_ccp1(CCP_PWM);
390
    setup_ccp1(CCP_PWM);
387
    set_pwm1_duty(75);
391
    set_pwm1_duty(75);
388
    setup_comparator(NC_NC_NC_NC);
392
    setup_comparator(NC_NC_NC_NC);
389
 
393
 
390
sprintf(sbuffer,"/S30\n\");
394
sprintf(sbuffer,"/S 30\r\n");
391
x = sscanf(sbuffer,"/%C%d", &cmd, &param);
395
x = sscanf(sbuffer,"/%C %d", arglist);
392
printf("\n\rsscanf sez: %u found, cmd %X param %X\n\r",x,cmd,param);
396
printf("\r\nsscanf sez: %u found, cmd %X param %X\r\n",x,cmd,param);
393
 
397
 
394
} 
398
}