srf06-cc26xx: add node_id variable

This commit is contained in:
Atis Elsts 2016-04-25 18:00:19 +03:00
parent f99511f494
commit 3ff8aa8ad8
1 changed files with 7 additions and 0 deletions

View File

@ -59,6 +59,7 @@
#include "uart.h"
#include "sys/clock.h"
#include "sys/rtimer.h"
#include "sys/node-id.h"
#include "lib/sensors.h"
#include "button-sensor.h"
#include "dev/serial-line.h"
@ -68,6 +69,8 @@
#include <stdio.h>
/*---------------------------------------------------------------------------*/
unsigned short node_id = 0;
/*---------------------------------------------------------------------------*/
/** \brief Board specific iniatialisation */
void board_init(void);
/*---------------------------------------------------------------------------*/
@ -123,6 +126,10 @@ set_rf_params(void)
printf("%02x\n", linkaddr_node_addr.u8[i]);
}
#endif
/* also set the global node id */
node_id = short_addr;
printf(" Node ID: %d\n", node_id);
}
/*---------------------------------------------------------------------------*/
/**