improvements to raw mode

This commit is contained in:
proddy
2019-05-07 21:26:50 +02:00
parent 2335287fe8
commit 788441b2df
2 changed files with 11 additions and 8 deletions

View File

@@ -185,7 +185,7 @@ void ICACHE_FLASH_ATTR emsuart_tx_buffer(uint8_t * buf, uint8_t len) {
delayMicroseconds(EMS_TX_BRK_WAIT);
}
}
emsuart_tx_brk();
emsuart_tx_brk(); // send <BRK>
}
/*
@@ -193,5 +193,5 @@ void ICACHE_FLASH_ATTR emsuart_tx_buffer(uint8_t * buf, uint8_t len) {
*/
void ICACHE_FLASH_ATTR emsaurt_tx_poll() {
USF(EMSUART_UART) = EMS_ID_ME;
emsuart_tx_brk();
emsuart_tx_brk(); // send <BRK>
}