Skip to content

Expose SystemCoreClock via cmsis.h to support new CMSIS/RTX #4714

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "hal_efuse.h"
#include "hal_soc_ps_monitor.h"
#include "diag.h"

#include "system_8195a.h"

// from RDC team
#ifdef CONFIG_MBED_ENABLED
Expand Down
2 changes: 2 additions & 0 deletions targets/TARGET_ublox/TARGET_HI2110/device/hi2110.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
extern "C" {
#endif

#include "system_hi2110.h"

/******************************************************************************/
/* Processor and Core Peripherals */
/******************************************************************************/
Expand Down
1 change: 1 addition & 0 deletions targets/TARGET_ublox/TARGET_HI2110/device/system_hi2110.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ extern "C" {
#endif

#include <stdint.h>
#include <stdbool.h>


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