Home
last modified time | relevance | path

Searched refs:DEBUG_PINS_ENABLED (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/hardware_gpio/include/hardware/
Dgpio.h1420 #define DEBUG_PINS_ENABLED(p) (__selected_debug_pins == (p)) macro
1429 #define DEBUG_PINS_ENABLED(p) (__debug_pin_settings<p>::enabled()) macro
1431 #define DEBUG_PINS_SET(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_set_mask((unsigned)(v)<<PICO_DEBUG_PIN…
1432 #define DEBUG_PINS_CLR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_clr_mask((unsigned)(v)<<PICO_DEBUG_PIN…
1433 #define DEBUG_PINS_XOR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_xor_mask((unsigned)(v)<<PICO_DEBUG_PIN…
/hal_rpi_pico-latest/src/host/hardware_gpio/include/hardware/
Dgpio.h160 #define DEBUG_PINS_ENABLED(p) false macro