13 lines
212 B
C
13 lines
212 B
C
#ifndef _BSPSYS_H_
|
|
#define _BSPSYS_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
void BspSysInit(void);
|
|
void BspSetSysClock(uint32_t clock);
|
|
uint32_t BspGetSysClock(void);
|
|
void BspRunLED(uint8_t enable);
|
|
#endif
|
|
|