feat: add STM32 four-channel weighing firmware

This commit is contained in:
FinleyHsu
2026-07-28 11:01:55 +08:00
commit 1282b9b77e
205 changed files with 80376 additions and 0 deletions
@@ -0,0 +1,29 @@
/*************************** (C) COPYRIGHT 2017 CXHY ****************************
* 文件名 ElectronicLock.c
* 描 述 :电子锁控制驱动程序
* 版 本 V1.0
* 作 者 XuZhongPing
* 日 期 2017/05/06
*********************************************************************************/
#ifndef __ELE_LOCK_H
#define __ELE_LOCK_H
#include "stm32f10x.h"
#include "stdio.h"
extern uint8_t lockStatus_1;
extern uint8_t lockStatus_2;
extern uint8_t lockStatus_3;
extern uint8_t lockStatus_4;
extern uint8_t lockStatus_5;
extern uint8_t lockStatus_6;
extern uint8_t isUnlockingMark;
void ElectronicLock_Init(void); //初始化
void Unlock(uint8_t num);
void Locked(uint8_t num);
void ElectronicLockCtrlTask(void);
#endif
/******************** (C) COPYRIGHT 2017 CXHY *****END OF FILE*******************/