You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

36 lines
889 B

#ifndef __TIMER_H
#define __TIMER_H
#include "sys.h"
//////////////////////////////////////////////////////////////////////////////////
//本程序只供学习使用,未经作者许可,不得用于其它任何用途
//ALIENTEK Mini STM32开发板
//通用定时器 驱动代码
//正点原子@ALIENTEK
//技术论坛:www.openedv.com
//修改日期:2010/12/03
//版本:V1.0
//版权所有,盗版必究。
//Copyright(C) 正点原子 2009-2019
//All rights reserved
//////////////////////////////////////////////////////////////////////////////////
// 用户数据的结构体
struct UserInfo{
int setModel; // 模块 0 - 正常模式 1 - 设置模式
int control_mode; // 0 - 手动模式 1 - 自动模式
int water_temp_up;
int water_temp_down;
float water_temp;
float water_level;
int target_water_level;
float water_quality;
int timer;
int timerFlag;
int HotFlag;
int CoolFlag;
int cupLidFlag;
};
void TIM3_Int_Init(u16 arr,u16 psc);
#endif