Stefan Schuermans commited on 2012-05-06 17:28:25
Showing 5 changed files, with 5 additions and 5 deletions.
... | ... |
@@ -132,7 +132,7 @@ static void AppBbmParseHeader(AppBbmState *state) |
132 | 132 |
return; // retry with next file in next iteration |
133 | 133 |
} |
134 | 134 |
state->dataSz = state->height * state->width * state->channels; |
135 |
- if (state->dataSz > 1024) { |
|
135 |
+ if (state->dataSz > 768) { |
|
136 | 136 |
debug_app_bbm_printf("%hhu: BBM frame size too large", state->no); |
137 | 137 |
return; // retry with next file in next iteration |
138 | 138 |
} |
... | ... |
@@ -47,7 +47,7 @@ struct HttpConnection { |
47 | 47 |
uint16_t pSndData; // the data to send (progmem pointer) |
48 | 48 |
unsigned short SndDataLen; // the length of the data to send |
49 | 49 |
char Vars; // flag if to interpret variables |
50 |
-} HttpConns[4]; |
|
50 |
+} HttpConns[2]; |
|
51 | 51 |
|
52 | 52 |
// parse HTTP command |
53 | 53 |
static void HttpParseCommand(struct HttpConnection *pConn) |