/hal_rpi_pico-latest/src/rp2_common/pico_lwip/ |
D | lwip_freertos.c | 23 static void tcpip_init_done(void *param) { in tcpip_init_done() argument 24 xSemaphoreGive((SemaphoreHandle_t)param); in tcpip_init_done() 44 static uint32_t clear_lwip_context(__unused void *param) { in clear_lwip_context() argument
|
/hal_rpi_pico-latest/cmake/ |
D | pico_utils.cmake | 1 function(pico_message param) 3 message("${param}") 10 message("${param}" "${ARGV1}")
|
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/ |
D | async_context_freertos.c | 139 static uint32_t end_task_func(void *param) { in end_task_func() argument 140 async_context_freertos_t *self = (async_context_freertos_t *)param; in end_task_func() 182 uint32_t (*func)(void *param); 183 void *param; member 189 call->rc = call->func(call->param); in handle_sync_func_call() 193 …ext_freertos_execute_sync(async_context_t *self_base, uint32_t (*func)(void *param), void *param) { in async_context_freertos_execute_sync() argument 199 call.param = param; in async_context_freertos_execute_sync()
|
D | async_context_poll.c | 54 …_poll_execute_sync(__unused async_context_t *context, uint32_t (*func)(void *param), void *param) { in async_context_poll_execute_sync() argument 55 return func(param); in async_context_poll_execute_sync()
|
D | async_context_threadsafe_background.c | 93 uint32_t (*func)(void *param); 94 void *param; member 100 call->rc = call->func(call->param); in handle_sync_func_call() 138 …e_background_execute_sync(async_context_t *self_base, uint32_t (*func)(void *param), void *param) { in async_context_threadsafe_background_execute_sync() argument 146 call.param = param; in async_context_threadsafe_background_execute_sync() 156 uint32_t rc = func(param); in async_context_threadsafe_background_execute_sync()
|
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/include/pico/ |
D | async_context.h | 161 uint32_t (*execute_sync)(async_context_t *context, uint32_t (*func)(void *param), void *param); 255 … async_context_execute_sync(async_context_t *context, uint32_t (*func)(void *param), void *param) { in async_context_execute_sync() argument 256 return context->type->execute_sync(context, func, param); in async_context_execute_sync()
|
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_arch/include/pico/ |
D | cyw43_arch.h | 320 static inline int cyw43_arch_lwip_protect(int (*func)(void *param), void *param) { in cyw43_arch_lwip_protect() argument 322 int rc = func(param); in cyw43_arch_lwip_protect()
|
/hal_rpi_pico-latest/src/common/pico_time/ |
D | timeout_helper.c | 20 ts->next_timeout = make_timeout_time_us(ts->param); in check_per_iteration_timeout_us() 30 ts->param = per_iteration_timeout_us; in init_per_iteration_timeout_us()
|
/hal_rpi_pico-latest/tools/pioasm/ |
D | pio_types.h | 137 rvalue param; member 140 …wait_source(type target, rvalue param = 0, int irq_type = 0) : target(target), param(std::move(par… in target() 300 int param; member 368 void set_mov_status(mov_status_type type, rvalue n, int param = 0) { 371 mov_status.param = param;
|
D | pio_assembler.cpp | 186 mov_status.final_n = mov_status.param * 8 + n; in finalize() 399 uint arg2 = source->param->resolve(program); in raw_encode() 402 …if (arg2 > 7) throw syntax_error(source->param->location, "irq number must be must be >= 0 and <= … in raw_encode() 407 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 0 and <= 31"); in raw_encode() 410 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 0 and <= 47"); in raw_encode() 414 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 0 and <= 31 a… in raw_encode() 417 …throw syntax_error(source->param->location, "absolute GPIO number must be must be >= 16 and <= 47 … in raw_encode() 423 …if (arg2 > 31) throw syntax_error(source->param->location, "pin number must be must be >= 0 and <=… in raw_encode() 426 …if (arg2 > 3) throw syntax_error(source->param->location, "jmppin offset must be must be >= 0 and … in raw_encode()
|
D | parser.yy | 34 %param { pio_assembler& pioasm }
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio/include/pico/stdio/ |
D | driver.h | 16 void (*set_chars_available_callback)(void (*fn)(void*), void *param);
|
/hal_rpi_pico-latest/src/common/pico_time/include/pico/ |
D | timeout_helper.h | 18 uint64_t param; member
|
/hal_rpi_pico-latest/src/rp2_common/pico_flash/include/pico/ |
D | flash.h | 87 int flash_safe_execute(void (*func)(void *), void *param, uint32_t enter_exit_timeout_ms);
|
/hal_rpi_pico-latest/src/rp2_common/pico_btstack/ |
D | btstack_stdin_pico.c | 29 void on_chars_available_callback(__unused void *param) { in on_chars_available_callback() argument
|
D | btstack_flash_bank.c | 42 static void pico_flash_bank_perform_flash_mutation_operation(void *param) { in pico_flash_bank_perform_flash_mutation_operation() argument 43 const mutation_operation_t *mop = (const mutation_operation_t *)param; in pico_flash_bank_perform_flash_mutation_operation()
|
/hal_rpi_pico-latest/test/pico_stdio_test/ |
D | pico_stdio_test.c | 26 static int64_t deadlock_test_alarm(alarm_id_t id, void *param) { in deadlock_test_alarm() argument
|
/hal_rpi_pico-latest/src/rp2_common/pico_flash/ |
D | flash.c | 75 int flash_safe_execute(void (*func)(void *), void *param, uint32_t enter_exit_timeout_ms) { in flash_safe_execute() argument 80 func(param); in flash_safe_execute()
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio_uart/ |
D | stdio_uart.c | 172 static void stdio_uart_set_chars_available_callback(void (*fn)(void*), void *param) { in stdio_uart_set_chars_available_callback() argument 176 chars_available_param = param; in stdio_uart_set_chars_available_callback()
|
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/ |
D | cyw43_driver.c | 52 uint32_t cyw43_irq_init(__unused void *param) { in cyw43_irq_init() argument 62 uint32_t cyw43_irq_deinit(__unused void *param) { in cyw43_irq_deinit() argument
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio/include/pico/ |
D | stdio.h | 160 void stdio_set_chars_available_callback(void (*fn)(void*), void *param);
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio_usb/ |
D | stdio_usb.c | 170 void stdio_usb_set_chars_available_callback(void (*fn)(void*), void *param) { in stdio_usb_set_chars_available_callback() argument 172 chars_available_param = param; in stdio_usb_set_chars_available_callback()
|
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/ |
D | bootrom.h | 548 static inline void rom_helper_flash_op(void *param) { in rom_helper_flash_op() argument 549 const rom_helper_flash_op_params_t *op = (const rom_helper_flash_op_params_t *)param; in rom_helper_flash_op() 845 static inline void rom_helper_explicit_buy(void *param) { in rom_helper_explicit_buy() argument 846 const rom_helper_explicit_buy_params_t *op = (const rom_helper_explicit_buy_params_t *)param; in rom_helper_explicit_buy()
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio/ |
D | stdio.c | 282 void stdio_set_chars_available_callback(void (*fn)(void*), void *param) { in stdio_set_chars_available_callback() argument 284 if (s->set_chars_available_callback) s->set_chars_available_callback(fn, param); in stdio_set_chars_available_callback()
|