19 lines
390 B
C
19 lines
390 B
C
/*
|
|
* chgContrl.h
|
|
*
|
|
* Created on: 2025年2月24日
|
|
* Author: Cerlink
|
|
*/
|
|
|
|
#ifndef APP_INC_CHGCONTRL_H_
|
|
#define APP_INC_CHGCONTRL_H_
|
|
|
|
#include "ch32l103_conf.h"
|
|
|
|
#define CHG_Pin GPIO_Pin_7 //充电引脚
|
|
#define CHG_Port GPIOB //充电Port
|
|
#define DCHG_Pin GPIO_Pin_6 //放电引脚
|
|
#define DCHG_Port GPIOB //放电Port
|
|
|
|
#endif /* APP_INC_CHGCONTRL_H_ */
|