English
Language : 

ZAURA Datasheet, PDF (57/99 Pages) –
ZAURA RF Wireless Library
Programmer’s Reference Manual
45
ZAURA_RF_SetParams
Description This routine writes the contents of the ZAURA_RF_Params and
ZAURA_RF_UserParams global variables to Flash. The ZAURA RF
Wireless Library also writes private configuration information to Flash
when this API is called.
Whenever any of the RF parameters is modified by a shell command,
the ZAURA RF Library calls this function to update the corresponding
parameter in Flash. If the application uses a Library API function to
modify the RF parameters, the application should call this routine to
ensure that the modified parameter(s) are written to Flash and will be
used to configure the radio on the next power-on reset event.
Syntax
void ZAURA_RF_SetParams( void );
Parameters None.
Returns
See Also
None.
ZAURA_RF_GetParams, ZAURA_RF_PARAMS Structure,
ZAURA_RF_UserParams description in Table 5.
Example
/*
* Change this node's RF address to 0x23 and store the new
* RF configuration in Flash.
*/
ZAURA_RF_GetParams();
ZAURA_RF_Params.Addr = 0x23;
ZAURA_RF_SetParams();
RM006003-1011
ZAURA_RF_SetParams