Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up {...
// blocking wait until xfer complete while (!nrf_spim_event_check(p_spim, NRF_SPIM_EVENT_END)){} } static void tft_controller_init(void); static inline void tft_cs(bool state) { if (state) { nrf_gpio_pin_set(DISPLAY_PIN_CS); } else { nrf_gpio_pin_clear(DISPLAY_PIN_CS);...
delay(BLOCKING_TIME_MS); // You need this Software timer for non-critical tasks. Avoid abusing ISR if not absolutely necessary // You don't need to and never call MBED_RPI_PICO_ISRTimer.run() here in the loop(). It's already handled by ISR timer. simpleTimer.run(); } Debug...