1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-22 07:45:29 +03:00

buffer overrun in cli parser, increased command buffer. oops. thanks nicodh.

git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@205 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
timecop@gmail.com 2012-09-05 06:58:57 +00:00
parent b2bc4bf9e6
commit fef43457c0
2 changed files with 122 additions and 122 deletions

View file

@ -22,7 +22,7 @@ extern uint8_t accHardware;
extern const char rcChannelLetters[];
// buffer
static char cliBuffer[32];
static char cliBuffer[48];
static uint32_t bufferIndex = 0;
// sync this with MultiType enum from mw.h