Using: SmartRF06 Eval board with CC2650EM board, QFN48 7x7 RGZ, TI-RTOS In Use
Looking at the board.c that comes with the CC2650, there is no definition of watchdog_config in board.c. I found something close on Google for TIVA:
#if TI_DRIVERS_WATCHDOG_INCLUDED
#include <ti/drivers/Watchdog.h>
#include <ti/drivers/watchdog/WatchdogTiva.h>
/* Watchdog objects */
WatchdogTiva_Object watchdogTivaObjects[EK_TM4C123GXL_WATCHDOGCOUNT];
/* Watchdog configuration structure */
const WatchdogTiva_HWAttrs watchdogTivaHWAttrs[EK_TM4C123GXL_WATCHDOGCOUNT] = {
/* EK_TM4C123GXL_WATCHDOG0 with 1 sec period at default CPU clock freq */
{WATCHDOG0_BASE, INT_WATCHDOG, 80000000},
};
const Watchdog_Config Watchdog_config[] = {
{&WatchdogTiva_fxnTable, &watchdogTivaObjects[0], &watchdogTivaHWAttrs[0]},
{NULL, NULL, NULL},
};
Does anyone have the definition that fits the CC2650 development board?
Thanks
Rob