17 lines
230 B
C
17 lines
230 B
C
/*
|
|
* PWM.c
|
|
*
|
|
* Created on: 2022年03月21日
|
|
* Author: User
|
|
*/
|
|
|
|
#define Heating_SET_PIN P32
|
|
#define PTC_Fan_PIN P35
|
|
|
|
typedef struct
|
|
{
|
|
void (*Init)(void);
|
|
} HeatingSetting_t;
|
|
|
|
extern HeatingSetting_t HeatingSetting;
|