1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_wdt.h
Jean-Pierre De Jesus DIAZ 0d9f6ca3f4 cpu/cc26xx_cc13xx: fix doxygen grouping warnings
Signed-off-by: Jean-Pierre De Jesus DIAZ <me@jeandudey.tech>
2021-09-11 12:45:15 +02:00

58 lines
1.3 KiB
C

/*
* Copyright (C) 2016 Leon George
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup cpu_cc26xx_cc13xx_definitions
* @{
*
* @file
* @brief CC26xx/CC13xx WDT register definitions
*/
#ifndef CC26XX_CC13XX_WDT_H
#define CC26XX_CC13XX_WDT_H
#include <cc26xx_cc13xx.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* WDT registers
*/
typedef struct {
reg32_t LOAD; /**< config */
reg32_t VALUE; /**< current count value */
reg32_t CTL; /**< control */
reg32_t ICR; /**< interrupt clear */
reg32_t RIS; /**< raw interrupt status */
reg32_t MIS; /**< masked interrupt status */
reg32_t __reserved1[0x100]; /**< meh */
reg32_t TEST; /**< test mode */
reg32_t INT_CAUS; /**< interrupt cause test mode */
reg32_t __reserved2[0x1f9]; /**< meh */
reg32_t LOCK; /**< lock */
} wdt_regs_t;
/**
* @ingroup cpu_specific_peripheral_memory_map
* @{
*/
#define WDT_BASE 0x40080000 /**< WDT base address */
/** @} */
#define WDT ((wdt_regs_t *) (WDT_BASE)) /**< WDT register bank */
#ifdef __cplusplus
} /* end extern "C" */
#endif
#endif /* CC26XX_CC13XX_WDT_H */
/** @} */