12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef SYSTEM_NRF_H
- #define SYSTEM_NRF_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdint.h>
- extern uint32_t SystemCoreClock;
- extern void SystemInit (void);
- extern void SystemCoreClockUpdate (void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|