| /hal_silabs-latest/simplicity_sdk/platform/radio/rail_lib/plugin/rail_util_protocol/ |
| D | sl_rail_util_protocol.c | 43 static RAIL_Status_t sl_rail_util_protocol_config_proprietary(RAIL_Handle_t handle) in sl_rail_util_protocol_config_proprietary() argument 45 (void) RAIL_SetPtiProtocol(handle, RAIL_PTI_PROTOCOL_CUSTOM); in sl_rail_util_protocol_config_proprietary() 50 static RAIL_Status_t sl_rail_util_protocol_config_ble(RAIL_Handle_t handle, in sl_rail_util_protocol_config_ble() argument 68 (void) RAIL_BLE_Init(handle); in sl_rail_util_protocol_config_ble() 71 status = RAIL_BLE_ConfigPhy1MbpsViterbi(handle); in sl_rail_util_protocol_config_ble() 74 status = RAIL_BLE_ConfigPhy2MbpsViterbi(handle); in sl_rail_util_protocol_config_ble() 77 status = RAIL_BLE_ConfigPhyCoded(handle, RAIL_BLE_Coding_125kbps); in sl_rail_util_protocol_config_ble() 80 status = RAIL_BLE_ConfigPhyCoded(handle, RAIL_BLE_Coding_500kbps); in sl_rail_util_protocol_config_ble() 83 status = RAIL_BLE_ConfigPhyQuuppa(handle); in sl_rail_util_protocol_config_ble() 90 status = RAIL_SetStateTiming(handle, &timings); in sl_rail_util_protocol_config_ble() [all …]
|
| D | sl_rail_util_protocol.h | 49 RAIL_Status_t sl_rail_util_protocol_config(RAIL_Handle_t handle,
|
| /hal_silabs-latest/gecko/platform/radio/rail_lib/plugin/rail_util_protocol/ |
| D | sl_rail_util_protocol.c | 42 static RAIL_Status_t sl_rail_util_protocol_config_proprietary(RAIL_Handle_t handle) in sl_rail_util_protocol_config_proprietary() argument 44 (void) RAIL_SetPtiProtocol(handle, RAIL_PTI_PROTOCOL_CUSTOM); in sl_rail_util_protocol_config_proprietary() 49 static RAIL_Status_t sl_rail_util_protocol_config_ble(RAIL_Handle_t handle, in sl_rail_util_protocol_config_ble() argument 67 RAIL_BLE_Init(handle); in sl_rail_util_protocol_config_ble() 70 status = RAIL_BLE_ConfigPhy1MbpsViterbi(handle); in sl_rail_util_protocol_config_ble() 73 status = RAIL_BLE_ConfigPhy2MbpsViterbi(handle); in sl_rail_util_protocol_config_ble() 76 status = RAIL_BLE_ConfigPhyCoded(handle, RAIL_BLE_Coding_125kbps); in sl_rail_util_protocol_config_ble() 79 status = RAIL_BLE_ConfigPhyCoded(handle, RAIL_BLE_Coding_500kbps); in sl_rail_util_protocol_config_ble() 82 status = RAIL_BLE_ConfigPhyQuuppa(handle); in sl_rail_util_protocol_config_ble() 89 status = RAIL_SetStateTiming(handle, &timings); in sl_rail_util_protocol_config_ble() [all …]
|
| D | sl_rail_util_protocol.h | 49 RAIL_Status_t sl_rail_util_protocol_config(RAIL_Handle_t handle,
|
| /hal_silabs-latest/simplicity_sdk/platform/service/memory_manager/src/ |
| D | sl_memory_manager_dynamic_reservation.c | 64 sl_memory_reservation_t *handle, in sl_memory_reserve_block() argument 89 if ((handle == NULL) || (block == NULL)) { in sl_memory_reserve_block() 94 if ((handle->block_size != 0) || (handle->block_address != NULL)) { in sl_memory_reserve_block() 169 handle->block_size = size; in sl_memory_reserve_block() 170 handle->block_address = reserved_blk; in sl_memory_reserve_block() 175 sli_memory_save_reservation_handle(handle, align); in sl_memory_reserve_block() 179 sli_memory_profiler_track_alloc(sli_mm_heap_name, handle->block_address, size_real); in sl_memory_reserve_block() 181 handle->block_address, in sl_memory_reserve_block() 182 handle->block_size, in sl_memory_reserve_block() 202 sl_status_t sl_memory_release_block(sl_memory_reservation_t *handle) in sl_memory_release_block() argument [all …]
|
| /hal_silabs-latest/simplicity_sdk/platform/service/sleeptimer/src/ |
| D | sl_sleeptimer.c | 122 static void delta_list_insert_timer(sl_sleeptimer_timer_handle_t *handle, 126 static sl_status_t delta_list_remove_timer(sl_sleeptimer_timer_handle_t *handle); 141 static sl_status_t create_timer(sl_sleeptimer_timer_handle_t *handle, 156 static void delay_callback(sl_sleeptimer_timer_handle_t *handle, 222 sl_status_t sl_sleeptimer_start_timer(sl_sleeptimer_timer_handle_t *handle, in sl_sleeptimer_start_timer() argument 231 if (handle == NULL) { in sl_sleeptimer_start_timer() 235 handle->conversion_error = 0; in sl_sleeptimer_start_timer() 236 handle->accumulated_error = 0; in sl_sleeptimer_start_timer() 238 sl_sleeptimer_is_timer_running(handle, &is_running); in sl_sleeptimer_start_timer() 243 return create_timer(handle, in sl_sleeptimer_start_timer() [all …]
|
| /hal_silabs-latest/simplicity_sdk/platform/common/src/ |
| D | sl_core_cortexm.c | 71 static void cycle_counter_start(dwt_cycle_counter_handle_t *handle); 72 static void cycle_counter_stop(dwt_cycle_counter_handle_t *handle); 297 static void cycle_counter_start(dwt_cycle_counter_handle_t *handle) in cycle_counter_start() argument 299 handle->start = DWT->CYCCNT; in cycle_counter_start() 313 static void cycle_counter_stop(dwt_cycle_counter_handle_t *handle) in cycle_counter_stop() argument 315 handle->cycles = DWT->CYCCNT - handle->start; in cycle_counter_stop() 317 if (handle->cycles > handle->max) { in cycle_counter_stop() 318 handle->max = handle->cycles; in cycle_counter_stop()
|
| /hal_silabs-latest/simplicity_sdk/platform/service/sleeptimer/inc/ |
| D | sl_sleeptimer.h | 74 typedef void (*sl_sleeptimer_timer_callback_t)(sl_sleeptimer_timer_handle_t *handle, void *data); 162 sl_status_t sl_sleeptimer_start_timer(sl_sleeptimer_timer_handle_t *handle, 190 sl_status_t sl_sleeptimer_restart_timer(sl_sleeptimer_timer_handle_t *handle, 218 sl_status_t sl_sleeptimer_start_periodic_timer(sl_sleeptimer_timer_handle_t *handle, 246 sl_status_t sl_sleeptimer_restart_periodic_timer(sl_sleeptimer_timer_handle_t *handle, 264 sl_status_t sl_sleeptimer_stop_timer(sl_sleeptimer_timer_handle_t *handle); 277 sl_status_t sl_sleeptimer_is_timer_running(const sl_sleeptimer_timer_handle_t *handle, 289 sl_status_t sl_sleeptimer_get_timer_time_remaining(const sl_sleeptimer_timer_handle_t *handle, 781 __STATIC_INLINE sl_status_t sl_sleeptimer_start_timer_ms(sl_sleeptimer_timer_handle_t *handle, in SL_CODE_CLASSIFY() 796 …return sl_sleeptimer_start_timer(handle, timeout_tick, callback, callback_data, priority, option_f… in SL_CODE_CLASSIFY() [all …]
|
| /hal_silabs-latest/wiseconnect/components/device/silabs/si91x/wireless/ble/inc/ |
| D | rsi_ble_apis.h | 607 uint8_t handle[2]; member 643 uint16_t handle; member 671 uint16_t handle; member 690 uint16_t handle; member 739 uint8_t handle[2]; member 837 uint8_t handle[2]; member 876 uint8_t handle[2]; member 1003 uint16_t handle; member 1073 uint8_t handle[2]; member 1089 uint8_t handle[2]; member [all …]
|
| D | rsi_ble.h | 1327 uint8_t handle[2]; member 1365 uint16_t handle; member 1387 uint8_t handle[2]; member 1406 uint8_t handle[2]; member 1426 uint8_t handle[2]; member 1448 uint8_t handle[2]; member 1518 uint16_t handle; member 1538 uint16_t handle; member 1585 uint16_t handle; member 1636 uint16_t handle; member
|
| /hal_silabs-latest/gecko/emlib/src/ |
| D | em_core.c | 306 static void cycle_counter_start(dwt_cycle_counter_handle_t *handle); 307 static void cycle_counter_stop(dwt_cycle_counter_handle_t *handle); 954 static void cycle_counter_start(dwt_cycle_counter_handle_t *handle) argument 956 handle->start = DWT->CYCCNT; 968 static void cycle_counter_stop(dwt_cycle_counter_handle_t *handle) argument 970 handle->cycles = DWT->CYCCNT - handle->start; 972 if (handle->cycles > handle->max) { 973 handle->max = handle->cycles;
|
| /hal_silabs-latest/simplicity_sdk/protocol/bluetooth/bgstack/ll/inc/ |
| D | sl_btctrl_hci_handler.h | 74 sl_status_t sl_btctrl_hci_message_get_opcode(struct sl_btctrl_hci_message * handle, uint16_t * opco… 83 sl_status_t sl_btctrl_hci_message_get_length(struct sl_btctrl_hci_message * handle, size_t * length… 94 sl_status_t sl_btctrl_hci_message_get_parameters(struct sl_btctrl_hci_message * handle, uint8_t * b… 107 sl_status_t sl_btctrl_hci_message_set_response(struct sl_btctrl_hci_message * handle, uint8_t bt_st…
|
| /hal_silabs-latest/simplicity_sdk/platform/service/power_manager/src/common/ |
| D | sl_power_manager_common.c | 159 sl_power_manager_em_transition_event_handle_t *handle; in sli_power_manager_notify_em_transition() local 208 …SL_SLIST_FOR_EACH_ENTRY(power_manager_em_transition_event_list, handle, sl_power_manager_em_transi… in sli_power_manager_notify_em_transition() 209 if ((handle->info->event_mask & transition) > 0) { in sli_power_manager_notify_em_transition() 210 handle->info->on_event(from, to); in sli_power_manager_notify_em_transition()
|
| /hal_silabs-latest/simplicity_sdk/platform/service/memory_manager/inc/ |
| D | sl_memory_manager.h | 776 sl_memory_reservation_t *handle, 786 sl_status_t sl_memory_release_block(sl_memory_reservation_t *handle); 795 sl_status_t sl_memory_reservation_handle_alloc(sl_memory_reservation_t **handle); 804 sl_status_t sl_memory_reservation_handle_free(sl_memory_reservation_t *handle);
|
| /hal_silabs-latest/simplicity_sdk/platform/service/power_manager/src/sleep_loop/ |
| D | sl_power_manager.c | 147 static void on_clock_wakeup_timeout(sl_sleeptimer_timer_handle_t *handle, 1031 static void on_clock_wakeup_timeout(sl_sleeptimer_timer_handle_t *handle, in on_clock_wakeup_timeout() argument 1034 (void)handle; in on_clock_wakeup_timeout()
|
| /hal_silabs-latest/simplicity_sdk/platform/common/inc/ |
| D | sl_cmsis_os2_common.h | 88 sl_sleeptimer_timer_handle_t handle; member
|