IQ.Pilot Release Commit @ 0798119

This commit is contained in:
IQ.Lvbs CI [bot]
2026-08-05 05:42:27 -05:00
parent 2b6f6d7d3e
commit 9174c4c63a
11 changed files with 300 additions and 33 deletions

View File

@@ -1,5 +1,12 @@
#pragma once
// The SPI slave must re-arm its RX DMA at every protocol turnaround before the
// master clocks the next phase. Without preemption that re-arm waits behind any
// in-flight handler (CAN RX under bus load), the master clocks into an unarmed
// peripheral, and the transfer fails its checksum -> NACK retry storms.
#define IRQ_PRIORITY_COMMS 0U
#define IRQ_PRIORITY_DEFAULT 2U
typedef struct interrupt {
IRQn_Type irq_type;
void (*handler)(void);