send code 0x18 on restart

pull/30/head
Ondřej Hruška 7 years ago
parent b6a0e796d8
commit e7c26b3e94
  1. 5
      user/user_main.c

@ -24,6 +24,7 @@
#include "screen.h"
#include "routes.h"
#include "user_main.h"
#include "uart_driver.h"
#ifdef ESPFS_POS
CgiUploadFlashDef uploadParams={
@ -114,6 +115,10 @@ void ICACHE_FLASH_ATTR user_init(void)
// The terminal screen
screen_init();
// Print the CANCEL character to indicate the module has restarted
// Critically important for client application if any kind of screen persistence / content re-use is needed
UART_WriteChar(UART0, 24, UART_TIMEOUT_US); // 0x18 - 24 - CAN
info("Listening on UART0, 115200-8-N-1!");
}

Loading…
Cancel
Save