1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards: fix CORE_CLOCK for cc2538 based boards

This commit is contained in:
Francisco Molina 2020-03-19 16:16:50 +01:00
parent efb113696d
commit 2f3a0e9b7e
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8
4 changed files with 10 additions and 3 deletions

View File

@ -26,6 +26,13 @@
extern "C" {
#endif
/**
* @name Clock system configuration
* @{
*/
#define CLOCK_CORECLOCK (16000000U) /* desired core clock frequency, 16MHz */
/** @} */
/**
* @name Timer configuration
*

View File

@ -30,7 +30,7 @@ extern "C" {
* @name Clock system configuration
* @{
*/
#define CLOCK_CORECLOCK (32000000U) /* 32MHz */
#define CLOCK_CORECLOCK (16000000U) /* 16MHz */
/** @} */
#ifdef __cplusplus

View File

@ -33,7 +33,7 @@
* @name Clock system configuration
* @{
*/
#define CLOCK_CORECLOCK (32000000U) /* desired core clock frequency, 32MHz */
#define CLOCK_CORECLOCK (16000000U) /* desired core clock frequency, 16MHz */
/** @} */
/**

View File

@ -31,7 +31,7 @@
* @name Clock system configuration
* @{
*/
#define CLOCK_CORECLOCK (32000000U) /* desired core clock frequency, 32MHz */
#define CLOCK_CORECLOCK (16000000U) /* desired core clock frequency, 16MHz */
/** @} */
/**