/** * @brief Set Radio State Wrapper * * sets or forces the radio into a state * * see radio.h for more info * * @param state requested radio state * @param force boolean indicating to force the state */ void cMxRadio::setState(radio_state_t state, uint8_t force) { if (force) radio_force_state(state); else radio_set_state(state); }
/** * @brief radio_force_state Wrapper * * force the radio to the requested state * * see radio.h for more info */ void zr_forceState(radio_state_t state) { radio_force_state(state); }
/** * @brief radio_force_state Wrapper * * force the radio to the requested state * * see radio.h for more info */ void cMxRadio::forceState(radio_state_t state) { radio_force_state(state); }