// *****************************************************************************
// @fn          ResetRadioCore
// @brief       Reset the radio core using RF_SRES command
// @param       none
// @return      none
// ***********************************;******************************************
void cc1101_interface_reset_radio_core(void)
{
    DPRINT("RESET RADIO");
    uint8_t status = _c1101_interface_reset_radio_core();

    //assert(status < 0xFF); // TODO check using other method, this fails now SPI baudrate is higher
}
// *****************************************************************************
// @fn          ResetRadioCore
// @brief       Reset the radio core using RF_SRES command
// @param       none
// @return      none
// ***********************************;******************************************
void cc1101_interface_reset_radio_core(void)
{
    DPRINT("RESET RADIO");
    _c1101_interface_reset_radio_core();
}