You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**@brief Load default CC430 frequency
* Update the CC430 HAL "RfSettings" frequency registers definitions with supplied values.
* Reference the CC430 users guide for more information about the CC430 radio registers.
*
* @param freq2 MSB index of the 3 byte radio module register
* @param freq1 Index [1] of the 3 byte radio module register
* @param freq0 LSB index of the 3 byte radio module register
*/
void radio_load_default_frequency(unsigned char freq2, unsigned char freq1, unsigned char freq0);
Is not really needed since the RF settings should be a default safe value and then use of the
The function:
Is not really needed since the RF settings should be a default safe value and then use of the
CC430_Program_Freq(unsigned char freq2, unsigned char freq1, unsigned char freq0)
function can provide needed RF frequency update.
The text was updated successfully, but these errors were encountered: