Beispiel #1
0
/***********************************************************************************
 * @fn      halRfSetPanId
 *
 * @brief   Write PAN Id to chip
 *
 * @param   none
 *
 * @return  none
 */
void halRfSetPanId(uint16 panId) {
	CC2520_MEMWR16(CC2520_RAM_PANID, panId);
}
Beispiel #2
0
/***********************************************************************************
* @fn      cc2520_setPanId
*
* @brief   Write PAN Id to chip
*
* @param   none
*
* @return  none
*/
void cc2520_setPanId(uint16_t panId)
{
    CC2520_MEMWR16(CC2520_RAM_PANID, panId);
}
Beispiel #3
0
/***********************************************************************************
 * @fn      halRfSetShortAddr
 *
 * @brief   Write short address to chip
 *
 * @param   none
 *
 * @return  none
 */
void halRfSetShortAddr(uint16 shortAddr) {
	CC2520_MEMWR16(CC2520_RAM_SHORTADDR, shortAddr);
}
Beispiel #4
0
/***********************************************************************************
* @fn      cc2520_setShortAddr
*
* @brief   Write short address to chip
*
* @param   none
*
* @return  none
*/
void cc2520_setShortAddr(uint16_t shortAddr)
{
    CC2520_MEMWR16(CC2520_RAM_SHORTADDR, shortAddr);
}