HCPBridgeESP32/HCPBridgeISR/src
Maik Hofmann 8c2b3500d6 cleanup repository 2021-03-06 18:04:49 +01:00
..
LICENSE Neue Version via Interrupt und für ESP32 zur Vermeidung von Timing-Problemen 2021-02-24 19:08:31 +01:00
README.md Neue Version via Interrupt und für ESP32 zur Vermeidung von Timing-Problemen 2021-02-24 19:08:31 +01:00
crc.c Bugfixing, move ISR code to IRAM, store crashdump 2021-03-01 18:28:33 +01:00
crc.h Neue Version via Interrupt und für ESP32 zur Vermeidung von Timing-Problemen 2021-02-24 19:08:31 +01:00
hciemulator.c Bugfixing, move ISR code to IRAM, store crashdump 2021-03-03 07:01:00 +01:00
hciemulator.h Bugfixing, move ISR code to IRAM, store crashdump 2021-03-01 18:28:33 +01:00
main.cpp cleanup repository 2021-03-06 18:04:49 +01:00
uart_register.h Neue Version via Interrupt und für ESP32 zur Vermeidung von Timing-Problemen 2021-02-24 19:08:31 +01:00

README.md

esp-uart

Blocking ESP8266 UART driver with interrupt-driven RX and TX buffers.

I needed an UART driver where I have complete control over the input and output, because I have the UART chip attached to a multiplexer that connects to multiple serial ports. The driver supplied by the manufacturer works by queueing read callback tasks from the interrupts, which was unnecessary complication for my use case. This driver is a bit work in progress, but should be already usable.

The license of uart_register.h is a little bit unclear, but because it only defines the hardware memory locations, it should not be copyrightable. In any case it can only be used on ESP8266 and is necessary to be able to use the UART functionality, so the manufacturer most likely does not have any issues with using it.