Searched refs:BLUEGLOB (Results 1 – 3 of 3) sorted by relevance
265 BLUEGLOB->BYTE4 = BLUE_IDLE_0; in HAL_RADIO_Init()550 MODIFY_REG(BLUEGLOB->BYTE4, GLOBAL_BYTE4_ACTIVE_Msk, BLUE_IDLE_0); in HAL_RADIO_ActionPacketIsr()554 BLUEGLOB->BYTE4 = (next->StateMachineNo | GLOBAL_BYTE4_ACTIVE_Msk); in HAL_RADIO_ActionPacketIsr()658 MODIFY_REG(BLUEGLOB->BYTE4, GLOBAL_BYTE4_ACTIVE_Msk, BLUE_IDLE_0); in HAL_RADIO_StopActivity()897 BLUEGLOB->RCVTIMEOUT[0] = (ReceiveTimeout) & 0x000000FF; in HAL_RADIO_SetGlobalReceiveTimeout()898 BLUEGLOB->RCVTIMEOUT[1] = (ReceiveTimeout >> 8) & 0x000000FF; in HAL_RADIO_SetGlobalReceiveTimeout()899 BLUEGLOB->RCVTIMEOUT[2] = (ReceiveTimeout >> 16) & 0x00000003; in HAL_RADIO_SetGlobalReceiveTimeout()903 BLUEGLOB->RCVTIMEOUT[0] = (ReceiveTimeout >> 2) & 0x000000FF; in HAL_RADIO_SetGlobalReceiveTimeout()904 BLUEGLOB->RCVTIMEOUT[1] = (ReceiveTimeout >> 10) & 0x000000FF; in HAL_RADIO_SetGlobalReceiveTimeout()905 BLUEGLOB->RCVTIMEOUT[2] = (ReceiveTimeout >> 18) & 0x00000003; in HAL_RADIO_SetGlobalReceiveTimeout()[all …]
708 BLUEGLOB->BYTE4 |= 1 << 7; in HAL_RADIO_TIMER_SetRadioTimerRelativeUsValue()709 BLUEGLOB->BYTE22 = 0xF0; in HAL_RADIO_TIMER_SetRadioTimerRelativeUsValue()710 BLUEGLOB->BYTE23 = 0xFF; in HAL_RADIO_TIMER_SetRadioTimerRelativeUsValue()1140 tx_delay_start = (BLUEGLOB->TXDELAYSTART * 125 / 1000) + 1; in _configureTxRxDelay()1142 …BLUEGLOB->WAKEUPINITDELAY = blue_unit_conversion(WAKEUP_INIT_DELAY, context->calibrationData.freq… in _configureTxRxDelay()1143 context->TxRxDelay.tim12_delay_mt = _us_to_machinetime(BLUEGLOB->TIMER12INITDELAYCAL); in _configureTxRxDelay()1144 …context->TxRxDelay.tx_cal_delay = _us_to_machinetime(BLUEGLOB->TRANSMITCALDELAYCHK + tx_delay_star… in _configureTxRxDelay()1145 …context->TxRxDelay.tx_no_cal_delay = _us_to_machinetime(BLUEGLOB->TRANSMITNOCALDELAYCHK + tx_delay… in _configureTxRxDelay()1146 context->TxRxDelay.rx_cal_delay = _us_to_machinetime(BLUEGLOB->RECEIVECALDELAYCHK); in _configureTxRxDelay()1147 context->TxRxDelay.rx_no_cal_delay = _us_to_machinetime(BLUEGLOB->RECEIVENOCALDELAYCHK); in _configureTxRxDelay()[all …]
44 #define BLUEGLOB ((GLOBALSTATMACH_TypeDef*) BLUEGLOB_BASE) macro