Skip to content

Commit

Permalink
Update driverlib version macros
Browse files Browse the repository at this point in the history
  • Loading branch information
g-oikonomou committed May 17, 2015
1 parent 25532e8 commit 32840db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platform/srf06-cc26xx/contiki-main.c
Expand Up @@ -62,7 +62,7 @@
#include "dev/serial-line.h"
#include "net/mac/frame802154.h"

#include "driverlib/driverlib_ver.h"
#include "driverlib/driverlib_release.h"

#include <stdio.h>
/*---------------------------------------------------------------------------*/
Expand Down Expand Up @@ -174,8 +174,8 @@ main(void)
serial_line_init();

printf("Starting " CONTIKI_VERSION_STRING "\n");
printf("With DriverLib v%u.%02u.%02u.%u\n", DRIVERLIB_MAJOR_VER,
DRIVERLIB_MINOR_VER, DRIVERLIB_PATCH_VER, DRIVERLIB_BUILD_ID);
printf("With DriverLib v%u.%u\n", DRIVERLIB_RELEASE_GROUP,
DRIVERLIB_RELEASE_BUILD);
printf(BOARD_STRING " using CC%u\n", CC26XX_MODEL_CPU_VARIANT);

process_start(&etimer_process, NULL);
Expand Down

0 comments on commit 32840db

Please sign in to comment.