You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
25 lines
404 B
#ifndef _DEVICE_SETUP_H_
|
|
#define _DEVICE_SETUP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint32_t systemCoreClock; /*!< System Clock Frequency (Core Clock) */
|
|
|
|
void setupInit();
|
|
void setupClock();
|
|
void setupBus();
|
|
void setupPower();
|
|
void setupMemory();
|
|
void delayInitMs(uint32_t clk, uint32_t ticks);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _DEVICE_SETUP_H_ */
|