Skip to main content
Review how the MCU interacts with platform hardware and the software stack used to control it. Understand the roles of key interfaces such as QUP, GPIO, interrupts, QTIMER, and debug paths, along with how they map to drivers, runtime services, and application logic. 6.1 Hardware interfaces You can align interface configuration, driver usage, and event handling with the expected programming model as listed in the following table. Table 6-1 Hardware interface roles 6.2 Software stack and programming model Table 6-2 Software layer roles ■ Use threads and work queues for work that is too heavy for interrupt context. ■ Keep the ISR short. Acknowledge the event, capture minimal state, and hand off the rest. ■ Assert power, clock, and path dependencies only for the active duration of the transfer or work item. ■ Prefer native subsystem APIs for UART, I2C, and I3C in the delivered Zephyr environment. ■ Treat QUP as the protocol controller and GPI as the optional data-movement layer beneath it.