32 lines
441 B
C
32 lines
441 B
C
/*
|
|
* main.h
|
|
*
|
|
* Created on: 2022年3月15日
|
|
* Author: User
|
|
*/
|
|
|
|
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include <STC15.H>
|
|
#include <intrins.h>
|
|
#include <stdio.h>
|
|
|
|
#include <Sys_Init.h>
|
|
#include <public.h>
|
|
#include <DS18B20.h>
|
|
#include <PWM.h>
|
|
#include <Timer0.h>
|
|
#include <Timer2.h>
|
|
#include <TM1650.h>
|
|
#include <IIC.h>
|
|
#include <HeatingSetting.h>
|
|
|
|
//#define MYDEBUG
|
|
|
|
#ifdef MYDEBUG
|
|
#include <UART.h>
|
|
#endif
|
|
|
|
#endif /* SRC_MAIN_H_ */
|