mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 08:49:52 +03:00
- fix typo - replace emsaurt_tx_poll by emsuart_tx_poll - smart tx - enabled by EMS_Sys_Status.emsTxDelay == 2 use loopback to send in burst mode - change emsuart_tx_poll to use emsuart_tx_buffer - encapsulate uart_swap in #ifndef NO_UART_SWAP (private use)
260 lines
9.1 KiB
C++
260 lines
9.1 KiB
C++
/*
|
|
* emsuart.cpp
|
|
*
|
|
* The low level UART code for ESP8266 to read and write to the EMS bus via uart
|
|
* Paul Derbyshire - https://github.com/proddy/EMS-ESP
|
|
*/
|
|
|
|
#include "emsuart.h"
|
|
#include "ems.h"
|
|
#include "ets_sys.h"
|
|
#include "osapi.h"
|
|
|
|
#include <Arduino.h>
|
|
#include <user_interface.h>
|
|
|
|
_EMSRxBuf * pEMSRxBuf;
|
|
_EMSRxBuf * paEMSRxBuf[EMS_MAXBUFFERS];
|
|
uint8_t emsRxBufIdx = 0;
|
|
|
|
os_event_t recvTaskQueue[EMSUART_recvTaskQueueLen]; // our Rx queue
|
|
|
|
//
|
|
// Main interrupt handler
|
|
// Important: do not use ICACHE_FLASH_ATTR !
|
|
//
|
|
static void emsuart_rx_intr_handler(void * para) {
|
|
static uint8_t length;
|
|
static uint8_t uart_buffer[EMS_MAXBUFFERSIZE];
|
|
|
|
// is a new buffer? if so init the thing for a new telegram
|
|
if (EMS_Sys_Status.emsRxStatus == EMS_RX_STATUS_IDLE) {
|
|
EMS_Sys_Status.emsRxStatus = EMS_RX_STATUS_BUSY; // status set to busy
|
|
length = 0;
|
|
}
|
|
|
|
// fill IRQ buffer, by emptying Rx FIFO
|
|
if (U0IS & ((1 << UIFF) | (1 << UITO) | (1 << UIBD))) {
|
|
while ((USS(EMSUART_UART) >> USRXC) & 0xFF) {
|
|
uart_buffer[length++] = USF(EMSUART_UART);
|
|
}
|
|
|
|
// clear Rx FIFO full and Rx FIFO timeout interrupts
|
|
U0IC = (1 << UIFF) | (1 << UITO);
|
|
}
|
|
|
|
// BREAK detection = End of EMS data block
|
|
if (USIS(EMSUART_UART) & ((1 << UIBD))) {
|
|
ETS_UART_INTR_DISABLE(); // disable all interrupts and clear them
|
|
|
|
U0IC = (1 << UIBD); // INT clear the BREAK detect interrupt
|
|
|
|
// copy data into transfer buffer
|
|
pEMSRxBuf->writePtr = length;
|
|
os_memcpy((void *)pEMSRxBuf->buffer, (void *)&uart_buffer, length);
|
|
|
|
// set the status flag stating BRK has been received and we can start a new package
|
|
EMS_Sys_Status.emsRxStatus = EMS_RX_STATUS_IDLE;
|
|
|
|
// call emsuart_recvTask() at next opportunity
|
|
system_os_post(EMSUART_recvTaskPrio, 0, 0);
|
|
|
|
// re-enable UART interrupts
|
|
ETS_UART_INTR_ENABLE();
|
|
}
|
|
}
|
|
|
|
/*
|
|
* system task triggered on BRK interrupt
|
|
* incoming received messages are always asynchronous
|
|
* The full buffer is sent to the ems_parseTelegram() function in ems.cpp.
|
|
*/
|
|
static void ICACHE_FLASH_ATTR emsuart_recvTask(os_event_t * events) {
|
|
_EMSRxBuf * pCurrent = pEMSRxBuf;
|
|
ems_parseTelegram((uint8_t *)pCurrent->buffer, (pCurrent->writePtr) - 1); // transmit EMS buffer, excluding the BRK
|
|
pEMSRxBuf = paEMSRxBuf[++emsRxBufIdx % EMS_MAXBUFFERS]; // next free EMS Receive buffer
|
|
}
|
|
|
|
static inline void ICACHE_FLASH_ATTR emsuart_flush_fifos() {
|
|
// flush everything left over in buffer, this clears both rx and tx FIFOs
|
|
uint32_t tmp = ((1 << UCRXRST) | (1 << UCTXRST)); // bit mask
|
|
USC0(EMSUART_UART) |= (tmp); // set bits
|
|
USC0(EMSUART_UART) &= ~(tmp); // clear bits
|
|
}
|
|
|
|
/*
|
|
* init UART0 driver
|
|
*/
|
|
void ICACHE_FLASH_ATTR emsuart_init() {
|
|
ETS_UART_INTR_DISABLE();
|
|
ETS_UART_INTR_ATTACH(NULL, NULL);
|
|
|
|
// allocate and preset EMS Receive buffers
|
|
for (int i = 0; i < EMS_MAXBUFFERS; i++) {
|
|
_EMSRxBuf * p = (_EMSRxBuf *)malloc(sizeof(_EMSRxBuf));
|
|
paEMSRxBuf[i] = p;
|
|
}
|
|
pEMSRxBuf = paEMSRxBuf[0]; // preset EMS Rx Buffer
|
|
|
|
// pin settings
|
|
PIN_PULLUP_DIS(PERIPHS_IO_MUX_U0TXD_U);
|
|
PIN_FUNC_SELECT(PERIPHS_IO_MUX_U0TXD_U, FUNC_U0TXD);
|
|
PIN_PULLUP_DIS(PERIPHS_IO_MUX_U0RXD_U);
|
|
PIN_FUNC_SELECT(PERIPHS_IO_MUX_U0RXD_U, FUNC_U0RXD);
|
|
|
|
// set 9600, 8 bits, no parity check, 1 stop bit
|
|
USD(EMSUART_UART) = (UART_CLK_FREQ / EMSUART_BAUD);
|
|
USC0(EMSUART_UART) = EMSUART_CONFIG; // 8N1
|
|
|
|
emsuart_flush_fifos();
|
|
|
|
// conf1 params
|
|
// UCTOE = RX TimeOut enable (default is 1)
|
|
// UCTOT = RX TimeOut Threshold (7bit) = want this when no more data after 2 characters. (default is 2)
|
|
// UCFFT = RX FIFO Full Threshold (7 bit) = want this to be 31 for 32 bytes of buffer. (default was 127).
|
|
// see https://www.espressif.com/sites/default/files/documentation/esp8266-technical_reference_en.pdf
|
|
USC1(EMSUART_UART) = 0; // reset config first
|
|
USC1(EMSUART_UART) = (EMS_MAX_TELEGRAM_LENGTH << UCFFT) | (0x02 << UCTOT) | (1 << UCTOE); // enable interupts
|
|
|
|
// set interrupts for triggers
|
|
USIC(EMSUART_UART) = 0xffff; // clear all interupts
|
|
USIE(EMSUART_UART) = 0; // disable all interrupts
|
|
|
|
// enable rx break, fifo full and timeout.
|
|
// not frame error UIFR (because they are too frequent) or overflow UIOF because our buffer is only max 32 bytes
|
|
USIE(EMSUART_UART) = (1 << UIBD) | (1 << UIFF) | (1 << UITO);
|
|
|
|
// set up interrupt callbacks for Rx
|
|
system_os_task(emsuart_recvTask, EMSUART_recvTaskPrio, recvTaskQueue, EMSUART_recvTaskQueueLen);
|
|
|
|
// disable esp debug which will go to Tx and mess up the line
|
|
system_set_os_print(0); // https://github.com/espruino/Espruino/issues/655
|
|
|
|
// swap Rx and Tx pins to use GPIO13 (D7) and GPIO15 (D8) respectively
|
|
#ifndef NO_UART_SWAP
|
|
system_uart_swap();
|
|
#endif
|
|
|
|
ETS_UART_INTR_ATTACH(emsuart_rx_intr_handler, NULL);
|
|
ETS_UART_INTR_ENABLE();
|
|
}
|
|
|
|
/*
|
|
* stop UART0 driver
|
|
*/
|
|
void ICACHE_FLASH_ATTR emsuart_stop() {
|
|
ETS_UART_INTR_DISABLE();
|
|
//ETS_UART_INTR_ATTACH(NULL, NULL);
|
|
//system_uart_swap(); // to be sure, swap Tx/Rx back.
|
|
//detachInterrupt(digitalPinToInterrupt(D7));
|
|
//noInterrupts();
|
|
}
|
|
|
|
/*
|
|
* re-start UART0 driver
|
|
*/
|
|
void ICACHE_FLASH_ATTR emsuart_start() {
|
|
ETS_UART_INTR_ENABLE();
|
|
}
|
|
|
|
/*
|
|
* Send a BRK signal
|
|
* Which is a 11-bit set of zero's (11 cycles)
|
|
*/
|
|
void ICACHE_FLASH_ATTR emsuart_tx_brk() {
|
|
// must make sure Tx FIFO is empty
|
|
while (((USS(EMSUART_UART) >> USTXC) & 0xff) != 0)
|
|
;
|
|
|
|
uint32_t tmp = ((1 << UCRXRST) | (1 << UCTXRST)); // bit mask
|
|
USC0(EMSUART_UART) |= (tmp); // set bits
|
|
USC0(EMSUART_UART) &= ~(tmp); // clear bits
|
|
|
|
// To create a 11-bit <BRK> we set TXD_BRK bit so the break signal will
|
|
// automatically be sent when the tx fifo is empty
|
|
USC0(EMSUART_UART) |= (1 << UCBRK); // set bit
|
|
delayMicroseconds(EMS_TX_BRK_WAIT); // 2070 - based on trial and error using an oscilloscope
|
|
USC0(EMSUART_UART) &= ~(1 << UCBRK); // clear bit
|
|
}
|
|
|
|
/*
|
|
* set loopback mode and clear Tx/Rx FIFO
|
|
*/
|
|
static inline void ICACHE_FLASH_ATTR emsuart_loopback(boolean enable) {
|
|
uint32_t tmp = (1 << UCLBE); // Loopback mask
|
|
if (enable)
|
|
USC0(EMSUART_UART) |= (tmp); // enable loopback
|
|
else
|
|
USC0(EMSUART_UART) &= ~(tmp); // disable loopback
|
|
}
|
|
|
|
/*
|
|
* Send to Tx, ending with a <BRK>
|
|
*/
|
|
void ICACHE_FLASH_ATTR emsuart_tx_buffer(uint8_t * buf, uint8_t len) {
|
|
uint32_t tmp;
|
|
|
|
// backward compatibility
|
|
if (EMS_Sys_Status.emsTxDelay<2) {
|
|
for (uint8_t i = 0; i < len; i++) {
|
|
USF(EMSUART_UART) = buf[i];
|
|
|
|
// check if we need to force a delay to slow down Tx
|
|
// https://github.com/proddy/EMS-ESP/issues/23#
|
|
if (EMS_Sys_Status.emsTxDelay==1) {
|
|
delayMicroseconds(EMS_TX_BRK_WAIT);
|
|
}
|
|
}
|
|
emsuart_tx_brk(); // send <BRK>
|
|
} else {
|
|
// smart Tx
|
|
#define UART_BIT_TIME 104 // bit time @9600 baud
|
|
|
|
ETS_UART_INTR_DISABLE(); // disable rx interrupt
|
|
emsuart_flush_fifos();
|
|
emsuart_loopback(true); // reset FIFOs & enable loopback
|
|
|
|
for (uint8_t i = 0; i < len; i++) {
|
|
USF(EMSUART_UART) = buf[i]; // send byte
|
|
delayMicroseconds(10*UART_BIT_TIME);
|
|
|
|
/* wait until
|
|
* ° loopback char is received
|
|
* ° Rx-FIFO full (unlikely)
|
|
* ° Rx-TimeOut (unlikely)
|
|
* ° Break detected (bus collision) - not handled now...
|
|
*/
|
|
for (uint8_t l = 0; l < 13; l++) {
|
|
if (((USS(EMSUART_UART) >> USRXC) & 0xFF)
|
|
|| (U0IS & ((1 << UIFF) | (1 << UITO) | (1 << UIBD))))
|
|
break;
|
|
delayMicroseconds(UART_BIT_TIME / 8); // ~13µs
|
|
}
|
|
|
|
uint32_t break_detect = (U0IS & (1 << UIBD)); // keep break detect interrupt
|
|
(void) (USF(EMSUART_UART)); // read out fifo, also clears FIFO counter
|
|
U0IC = (1 << UIFF) | (1 << UITO) | (1 << UIBD); // clear pending interrupts
|
|
if (break_detect)
|
|
break; // collision / abort from master
|
|
}
|
|
|
|
// send <BRK> - wait until <BRK> detect
|
|
USC0(EMSUART_UART) |= (1 << UCBRK); // send <BRK>
|
|
while (!(U0IS & (1 << UIBD)))
|
|
delayMicroseconds(UART_BIT_TIME / 8); // ~13µs
|
|
USC0(EMSUART_UART) &= ~(1 << UCBRK); // clear <BRK>
|
|
|
|
U0IC = (1 << UIFF) | (1 << UITO) | (1 << UIBD); // clear pending interrupts
|
|
emsuart_flush_fifos();
|
|
emsuart_loopback(false); // disable loopback mode
|
|
ETS_UART_INTR_ENABLE(); // enable rx interrupt
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Send the Poll (our own ID) to Tx as a single byte and end with a <BRK>
|
|
*/
|
|
void ICACHE_FLASH_ATTR emsuart_tx_poll() {
|
|
static uint8_t buf[] = {EMS_ID_ME};
|
|
emsuart_tx_buffer(buf,1);
|
|
} |