ZD-BMS-CH/ZDBMS/BMS_MC/init/inc/init.h

27 lines
421 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* init.h
*
* Created on: 2025年2月24日
* Author: Cerlink
*/
#ifndef INIT_INC_INIT_H_
#define INIT_INC_INIT_H_
#include "ch32l103_conf.h"
#include "../init/inc/gpio.h"
#include "../init/inc/tim.h"
#include "../init/inc/adc.h"
void all_hardWare_init(void);
/*
* ADCBUFF由DMA得来从0到4依次为:
* 温度1温度2温度3放电电流充电电流
*/
extern uint16_t gADCBuf[5];
#endif /* INIT_INC_INIT_H_ */