9 lines
146 B
C
9 lines
146 B
C
|
#ifndef __HEATER_H
|
||
|
#define __HEATER_H
|
||
|
#include "hal_conf.h"
|
||
|
|
||
|
void Heater_Init(void);
|
||
|
void duty(u8 mode, u16 pwm);
|
||
|
void heat_control(void);
|
||
|
|
||
|
#endif
|