Skip to content

Commit d5108e5

Browse files
Merge pull request #4714 from bulislaw/expose_systemcoreclock
Expose SystemCoreClock via cmsis.h to support new CMSIS/RTX
2 parents 456607b + 693a3a8 commit d5108e5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

targets/TARGET_Realtek/TARGET_AMEBA/TARGET_RTL8195A/device/rtl8195a.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "hal_efuse.h"
3333
#include "hal_soc_ps_monitor.h"
3434
#include "diag.h"
35-
35+
#include "system_8195a.h"
3636

3737
// from RDC team
3838
#ifdef CONFIG_MBED_ENABLED

targets/TARGET_ublox/TARGET_HI2110/device/hi2110.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
extern "C" {
2222
#endif
2323

24+
#include "system_hi2110.h"
25+
2426
/******************************************************************************/
2527
/* Processor and Core Peripherals */
2628
/******************************************************************************/

targets/TARGET_ublox/TARGET_HI2110/device/system_hi2110.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ extern "C" {
2222
#endif
2323

2424
#include <stdint.h>
25+
#include <stdbool.h>
2526

2627

2728
extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */

0 commit comments

Comments
 (0)