Search found 3 matches

by OzmoOzmo
Wed Dec 13, 2017 4:01 am
Forum: ESP32 Arduino
Topic: Disable fifo buffers on the ESP32 UART?
Replies: 4
Views: 10280

Re: Disable fifo buffers on the ESP32 UART?

I found the solution to at least one issue - by default the Arduino code is set to only notify you when 120 characters have arrived (or a preset timeout) - removing this latency has helped a lot to made the communications much more responsive. Within the Arduino code - after the Serial.begin() - I u...
by OzmoOzmo
Thu Nov 30, 2017 12:06 pm
Forum: ESP32 Arduino
Topic: Disable fifo buffers on the ESP32 UART?
Replies: 4
Views: 10280

Re: Disable fifo buffers on the ESP32 UART?

Thank you for trying it - My timings are a bit more critical.. Its a frame based protocol - and the Master device only waits a few ms before assuming the device is lost - so I need a quick response and they need to be in Request-Response sequence. Based on your code - here is some code that shows th...
by OzmoOzmo
Mon Nov 27, 2017 6:01 am
Forum: ESP32 Arduino
Topic: Disable fifo buffers on the ESP32 UART?
Replies: 4
Views: 10280

Disable fifo buffers on the ESP32 UART?

I need to send/transmit with very lot latency - for a bus protocol to connect to a legacy device (security system) I want to connect to. The protocol cannot be changed. I need the ESP32 to wait for a message (about 16 bytes) on the UART, process it and send a small packet of data (4 bytes) in respon...