aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/server.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-10-28 11:29:09 +0200
committerlonkaars <loek@pipeframe.xyz>2022-10-28 11:29:09 +0200
commitf37af779bb836faa7571b7d47036f36f71319aca (patch)
tree17f86baa284dd9a67770e052cc6d3383afd27159 /stm32f091/server.c
parent1cac46e7701ef2783aea13d55261582f4d91f2fa (diff)
use circular dma buffer for rx
Diffstat (limited to 'stm32f091/server.c')
-rw-r--r--stm32f091/server.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stm32f091/server.c b/stm32f091/server.c
index d4f7e20..8001380 100644
--- a/stm32f091/server.c
+++ b/stm32f091/server.c
@@ -127,9 +127,8 @@ void ws_server_req_incoming(uint8_t* data, size_t size) {
}
case WS_SERVER_LM_CIPSEND_LISTENING: {
if (next_few_bytes_are("SEND OK")) {
- i += 6;
- // g_ws_server_parser.mode = WS_SERVER_LM_IDLE;
ws_server_req_respond_end(0);
+ // g_ws_server_parser.mode = WS_SERVER_LM_IDLE;
}
break;
}