I use this code: https://github.com/solexious/Artnetnode ... #L229-L240
on the energia IDE to correctly send out the first frame flag of the DMX packet, then switch it to the correct mode and dump out the frame of DMX into the UART buffer to be sent while the MCU is free to do other things.
Is there a way for me to have the same low level control of the UART in this arduino IDE board for the esp8266? I need to be able to set the serial speed, then control the parity and number of stop bits of the UART port chosen.
ROM_UARTConfigSetExpClk(UART0_BASE, F_CPU, 125000,
(UART_CONFIG_PAR_NONE | UART_CONFIG_STOP_TWO |
UART_CONFIG_WLEN_8));
Best,
Sol