I have a hardware IO task (write/read serial message) that has a strict jitter requirement of less than 200 micro seconds. I need to be able to isolate both a CPU core/s and hardware/interrupt.
I have tried 2 things that have helped but not gotten me all the way there.
- Using <termios.h> to configure the tty device. Specifically setting VMIN=packet_size and VTIME=0
- Isolcpus kernel argument in /etc/default/grub and running with
taskset
I am still seeing upwards of 5 ms (5000 us) of jitter on my serial reads. I tested this same application with pseudo serial devices (created by socat
) to eliminate the HW variable but am still seeing high jitter.
My test application right now just opens a serial connection, configures it, then does a while loop of writes/reads.
Could use advice on how to bring jitter down to 200 us or less. I am considering moving to a dual boot RTOS/Linux with shared memory, but would rather solve on one OS.
Real Application description:
- Receive message from USB serial
- Get PTP (precision time protocol) time within 200 us of receiving the first bit
- Write packet received along with timestamp to shared memory buffer shared with a python application:
<timestamp, packet>
. - Loop.
Also on another isolated HW/core:
- Read some
<timestamp, packet>
from a shared memory buffer - Poll PTP time until
<timestamp>
- Transmit
<packet>
at within 200 us of<timestamp>
over USB serial - Loop
To reduce process latency/jitter:
Isolate some cores /etc/default/grub...
isolcpus=0
Never interrupt RT tasks set
/proc/sys/kernel/sched_rt_runtime_us
to -1Run high priority on isolated core
schedtool -a 0 -F -p 99 -n -20 -e $CMD
To reduce serial latency/jitter
O_SYNC
ASYNC_LOW_LATENCY
VMIN = message size
andVTIME = 0
tcdrain
after issuing write commands