Searched refs:sleepTime (Results 1 – 5 of 5) sorted by relevance
/loramac-node-latest/src/radio/sx126x/ |
D | sx126x.c | 330 void SX126xSetRxDutyCycle( uint32_t rxTime, uint32_t sleepTime ) in SX126xSetRxDutyCycle() argument 337 buf[3] = ( uint8_t )( ( sleepTime >> 16 ) & 0xFF ); in SX126xSetRxDutyCycle() 338 buf[4] = ( uint8_t )( ( sleepTime >> 8 ) & 0xFF ); in SX126xSetRxDutyCycle() 339 buf[5] = ( uint8_t )( sleepTime & 0xFF ); in SX126xSetRxDutyCycle()
|
D | radio.c | 337 void RadioSetRxDutyCycle( uint32_t rxTime, uint32_t sleepTime ); 1110 void RadioSetRxDutyCycle( uint32_t rxTime, uint32_t sleepTime ) in RadioSetRxDutyCycle() argument 1112 SX126xSetRxDutyCycle( rxTime, sleepTime ); in RadioSetRxDutyCycle()
|
D | sx126x.h | 892 void SX126xSetRxDutyCycle( uint32_t rxTime, uint32_t sleepTime );
|
/loramac-node-latest/src/radio/ |
D | radio.h | 402 void ( *SetRxDutyCycle ) ( uint32_t rxTime, uint32_t sleepTime );
|
/loramac-node-latest/src/radio/lr1110/ |
D | radio.c | 334 void RadioSetRxDutyCycle( uint32_t rxTime, uint32_t sleepTime ); 1062 void RadioSetRxDutyCycle( uint32_t rxTime, uint32_t sleepTime ) in RadioSetRxDutyCycle() argument 1064 lr1110_radio_set_rx_dutycycle( &LR1110, rxTime, sleepTime, 0 ); in RadioSetRxDutyCycle()
|