20 lines
260 B
C
20 lines
260 B
C
/*
|
|
* CPU.h
|
|
*
|
|
* Created on: Oct 4, 2016
|
|
* Author: Administrator
|
|
*/
|
|
|
|
#ifndef CPU_H_
|
|
#define CPU_H_
|
|
|
|
#include "derivative.h"
|
|
#include <hidef.h>
|
|
#include "AD1.h"
|
|
#include "PWM1.h"
|
|
|
|
void CLK_CONFIG(void);
|
|
void Peripheral_Init(void);
|
|
|
|
#endif /* CPU_H_ */
|