mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
65 lines
1.3 KiB
C
65 lines
1.3 KiB
C
|
/*
|
||
|
* Copyright (C) 2018 Bas Stottelaar <basstottelaar@gmail.com>
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @defgroup boards_common_silabs_drivers_aem Advanced energy monitor driver
|
||
|
* @ingroup boards_common_silabs_drivers
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
* @brief Implementations of the advanced energy monitor driver.
|
||
|
*
|
||
|
* @author Bas Stottelaar <basstottelaar@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef AEM_H
|
||
|
#define AEM_H
|
||
|
|
||
|
#include "board.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @brief AEM specific values for the Data Watchpoint and Trace (DWT).
|
||
|
*/
|
||
|
#define AEM_DWT_CTRL (0x400113FF)
|
||
|
|
||
|
/**
|
||
|
* @name AEM specific values for theTrace Port Interface Unit (TPIU).
|
||
|
* @{
|
||
|
*/
|
||
|
#define AEM_TPI_ACPR (0xf)
|
||
|
#define AEM_TPI_SPPR (0x2)
|
||
|
#define AEM_TPI_FFCR (0x100)
|
||
|
/** @} */
|
||
|
|
||
|
/**
|
||
|
* @name AEM specific values for the Instrumentation Trace Microcel (ITM).
|
||
|
* @{
|
||
|
*/
|
||
|
#define AEM_ITM_LAR (0xc5acce55)
|
||
|
#define AEM_ITM_TCR (0x10009)
|
||
|
/** @} */
|
||
|
|
||
|
/**
|
||
|
* @brief Initialize the advanced energy monitor.
|
||
|
*
|
||
|
* This must be performed as one of the first initializations, to provide
|
||
|
* output as soon as possible.
|
||
|
*/
|
||
|
void aem_init(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* AEM_H */
|
||
|
/** @} */
|