Update driverlib version macros
This commit is contained in:
parent
25532e8abf
commit
32840db66b
1 changed files with 3 additions and 3 deletions
|
@ -62,7 +62,7 @@
|
||||||
#include "dev/serial-line.h"
|
#include "dev/serial-line.h"
|
||||||
#include "net/mac/frame802154.h"
|
#include "net/mac/frame802154.h"
|
||||||
|
|
||||||
#include "driverlib/driverlib_ver.h"
|
#include "driverlib/driverlib_release.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
@ -174,8 +174,8 @@ main(void)
|
||||||
serial_line_init();
|
serial_line_init();
|
||||||
|
|
||||||
printf("Starting " CONTIKI_VERSION_STRING "\n");
|
printf("Starting " CONTIKI_VERSION_STRING "\n");
|
||||||
printf("With DriverLib v%u.%02u.%02u.%u\n", DRIVERLIB_MAJOR_VER,
|
printf("With DriverLib v%u.%u\n", DRIVERLIB_RELEASE_GROUP,
|
||||||
DRIVERLIB_MINOR_VER, DRIVERLIB_PATCH_VER, DRIVERLIB_BUILD_ID);
|
DRIVERLIB_RELEASE_BUILD);
|
||||||
printf(BOARD_STRING " using CC%u\n", CC26XX_MODEL_CPU_VARIANT);
|
printf(BOARD_STRING " using CC%u\n", CC26XX_MODEL_CPU_VARIANT);
|
||||||
|
|
||||||
process_start(&etimer_process, NULL);
|
process_start(&etimer_process, NULL);
|
||||||
|
|
Loading…
Reference in a new issue