This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

need reference watchdog_config definition (board.c) for CC2650 dev board using TI-RTOS

Other Parts Discussed in Thread: CC2650, CC2640

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