tao_z
2021-06-24 bc6c916bff0b8d342c1cd62da73a2a09f18d22a8
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 (64000000UL)
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