1
2
3
4
5
6
7
8
9
10
11
12
13
| #ifndef _CLOCK_H_
| #define _CLOCK_H_
| #include "stdint.h"
| #define SYSTEM_CLOCK (48000000UL)
| void Clock_Config(void);
| void Ostick_config(void);
| void delay_1ms(uint32_t count);
| void delay_decrement(void);
| #if defined Test_ENABLE
| void Freq_Test(void);
| #endif
|
| #endif
|
|