Home
last modified time | relevance | path

Searched refs:PARAM_ASSERTIONS_ENABLED (Results 1 – 4 of 4) sorted by relevance

/hal_rpi_pico-latest/src/common/pico_base_headers/include/pico/
Dassert.h32 #define PARAM_ASSERTIONS_ENABLED(x) ((PARAM_ASSERTIONS_ENABLED_ ## x || PARAM_ASSERTIONS_ENABLE_ALL… macro
34 #define invalid_params_if(x, test) ({if (PARAM_ASSERTIONS_ENABLED(x)) assert(!(test));})
35 #define valid_params_if(x, test) ({if (PARAM_ASSERTIONS_ENABLED(x)) assert(test);})
36 #define hard_assert_if(x, test) ({if (PARAM_ASSERTIONS_ENABLED(x)) hard_assert(!(test));})
/hal_rpi_pico-latest/src/rp2_common/hardware_dma/
Ddma.c109 #if PARAM_ASSERTIONS_ENABLED(HARDWARE_DMA)
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/include/hardware/
Dpio_instructions.h84 #if PARAM_ASSERTIONS_ENABLED(PIO_INSTRUCTIONS) in _pio_encode_instr_and_args()
/hal_rpi_pico-latest/src/rp2_common/hardware_dma/include/hardware/
Ddma.h60 #if PARAM_ASSERTIONS_ENABLED(HARDWARE_DMA) in check_dma_channel_param()