Home
last modified time | relevance | path

Searched refs:current (Results 1 – 8 of 8) sorted by relevance

/hal_silabs-latest/simplicity_sdk/platform/service/sleeptimer/src/
Dsl_sleeptimer.c497 sl_sleeptimer_timer_handle_t *current; in sl_sleeptimer_is_timer_running() local
504 current = timer_head; in sl_sleeptimer_is_timer_running()
505 while (current != NULL && !*running) { in sl_sleeptimer_is_timer_running()
506 if (current == handle) { in sl_sleeptimer_is_timer_running()
509 current = current->next; in sl_sleeptimer_is_timer_running()
524 sl_sleeptimer_timer_handle_t *current; in sl_sleeptimer_get_timer_time_remaining() local
536 current = timer_head; in sl_sleeptimer_get_timer_time_remaining()
537 while (current != handle && current != NULL) { in sl_sleeptimer_get_timer_time_remaining()
538 *time += current->delta; in sl_sleeptimer_get_timer_time_remaining()
539 current = current->next; in sl_sleeptimer_get_timer_time_remaining()
[all …]
/hal_silabs-latest/simplicity_sdk/platform/service/memory_manager/src/
Dsli_memory_manager_common.c530 sli_block_metadata_t* current = sli_free_lt_list_head; in sli_memory_check_heap_integrity_forwards() local
534 while (current != NULL) { in sli_memory_check_heap_integrity_forwards()
536 if (current->offset_neighbour_next == 0) { in sli_memory_check_heap_integrity_forwards()
537 … heap_end_by_metadata = ((uint64_t *)current + (current->length + SLI_BLOCK_METADATA_SIZE_DWORD)); in sli_memory_check_heap_integrity_forwards()
587 …adata_t *next_blk_by_offset = (sli_block_metadata_t *)((uint64_t *)current + (current->offset_neig… in sli_memory_check_heap_integrity_forwards()
588 …sli_block_metadata_t *next_blk_by_len = (sli_block_metadata_t *)((uint64_t *)current + (current->l… in sli_memory_check_heap_integrity_forwards()
635 current = next_blk_by_offset; in sli_memory_check_heap_integrity_forwards()
640 return (sli_block_metadata_t *)current; in sli_memory_check_heap_integrity_forwards()
658 sli_block_metadata_t* current = sli_free_st_list_head; in sli_memory_check_heap_integrity_backwards() local
662 while (current != NULL) { in sli_memory_check_heap_integrity_backwards()
[all …]
/hal_silabs-latest/gecko/platform/radio/rail_lib/plugin/pa-conversions/
Dpa_conversions_efr32.c107 RAIL_PaDescriptor_t *current = in RAIL_InitTxPowerCurves() local
109 current->algorithm = RAIL_PA_ALGORITHM_PIECEWISE_LINEAR; in RAIL_InitTxPowerCurves()
110 current->segments = config->piecewiseSegments; in RAIL_InitTxPowerCurves()
111 current->min = RAIL_TX_POWER_LEVEL_2P4_HP_MIN; in RAIL_InitTxPowerCurves()
112 current->max = RAIL_TX_POWER_LEVEL_2P4_HP_MAX; in RAIL_InitTxPowerCurves()
126 current->conversion.powerCurve = &txPower2p4; in RAIL_InitTxPowerCurves()
129 current = &powerCurvesState.curves[RAIL_TX_POWER_MODE_2P4_LP]; in RAIL_InitTxPowerCurves()
130 current->algorithm = RAIL_PA_ALGORITHM_MAPPING_TABLE; in RAIL_InitTxPowerCurves()
131 current->segments = 0U; in RAIL_InitTxPowerCurves()
132 current->min = RAIL_TX_POWER_LEVEL_2P4_LP_MIN; in RAIL_InitTxPowerCurves()
[all …]
/hal_silabs-latest/simplicity_sdk/platform/radio/rail_lib/plugin/pa-conversions/
Dpa_conversions_efr32.c205 RAIL_PaDescriptor_t *current = &powerCurvesState.curves[0]; in RAIL_InitTxPowerCurves() local
206 current->algorithm = RAIL_PA_ALGORITHM_PIECEWISE_LINEAR; in RAIL_InitTxPowerCurves()
207 current->segments = config->piecewiseSegments; in RAIL_InitTxPowerCurves()
208 current->min = RAIL_TX_POWER_LEVEL_2P4_HP_MIN; in RAIL_InitTxPowerCurves()
209 current->max = RAIL_TX_POWER_LEVEL_2P4_HP_MAX; in RAIL_InitTxPowerCurves()
223 current->conversion.powerCurve = &txPower2p4; in RAIL_InitTxPowerCurves()
226 current = &powerCurvesState.curves[1]; in RAIL_InitTxPowerCurves()
227 current->algorithm = RAIL_PA_ALGORITHM_MAPPING_TABLE; in RAIL_InitTxPowerCurves()
228 current->segments = 0U; in RAIL_InitTxPowerCurves()
229 current->min = RAIL_TX_POWER_LEVEL_2P4_LP_MIN; in RAIL_InitTxPowerCurves()
[all …]
/hal_silabs-latest/si32/si32Hal/SI32_Modules/
DSI32_CAPSENSE_A_Type.c628 uint32_t current) in _SI32_CAPSENSE_A_set_output_current() argument
630 assert(current < 8); // current < 2^3 in _SI32_CAPSENSE_A_set_output_current()
633 basePointer->MODE_SET = current << SI32_CAPSENSE_A_MODE_IASEL_SHIFT; in _SI32_CAPSENSE_A_set_output_current()
DSI32_CAPSENSE_A_Type.h756 #define SI32_CAPSENSE_A_set_output_current(basePointer, current) do{ \ argument
758 basePointer->MODE_SET = current << SI32_CAPSENSE_A_MODE_IASEL_SHIFT;\
/hal_silabs-latest/simplicity_sdk/platform/emlib/inc/
Dem_emu.h753 EMU_HdregStopGearILmt_TypeDef current; /**< limit HDREG max current capability. */ member
1312 void EMU_HDRegStopGearSet(EMU_HdregStopGearILmt_TypeDef current);
/hal_silabs-latest/simplicity_sdk/platform/emlib/src/
Dem_emu.c4312 void EMU_HDRegStopGearSet(EMU_HdregStopGearILmt_TypeDef current) in EMU_HDRegStopGearSet() argument
4314 EMU->CTRL = ((current << _EMU_CTRL_HDREGSTOPGEAR_SHIFT) \ in EMU_HDRegStopGearSet()