send code 0x18 on restart

This commit is contained in:
2017-03-01 23:57:07 +01:00
parent b6a0e796d8
commit e7c26b3e94
+5
View File
@@ -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!");
}