power12V_driver.h 254 B

123456789101112
  1. #ifndef __POWER12V_DRIVER_H
  2. #define __POWER12V_DRIVER_H
  3. #include "stm32f1xx_hal.h"
  4. #define POWER12V_EN_Pin GPIO_PIN_12
  5. #define POWER12V_EN_GPIO_Port GPIOA
  6. void Power12V_Driver_Init(void);
  7. void Power12V_Driver_Process(FlagStatus SwitchStatus);
  8. #endif