Attila Fazekas / Mbed 2 deprecated cli

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers cli.h Source File

cli.h

00001 #include "mbed.h"
00002 
00003 
00004 #define bufferSize 32
00005 
00006 //global variables
00007 bool run = true;
00008 int i = 0;
00009 int j = 0;
00010 int a = 0;
00011 int b = 0;
00012 int cliFlag = 0;
00013 
00014 int intIndex = 0;
00015 int bigStrIndex = 0;
00016 int smallStrIndex = 0;
00017 int elseIndex = 0;
00018 unsigned char data[bufferSize];
00019 unsigned char intBuff[bufferSize];
00020 unsigned char bigStrBuff[bufferSize];
00021 unsigned char smallStrBuff[bufferSize];
00022 unsigned char elseBuff[bufferSize];
00023 
00024 
00025 
00026 
00027 
00028 
00029 
00030 
00031