1
0

peripheral.h 522 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. @copyright None
  3. @file peripheral.h
  4. @author Comment Vivre
  5. @date 2025-12-29
  6. @brief None
  7. */
  8. #ifndef __PERIPHERAL_H_
  9. #define __PERIPHERAL_H_
  10. void TSD_Init(void);
  11. void ADC_Init(void);
  12. void AMP_Init(void);
  13. void CMP3_Init(void);
  14. void CMP3_Interrupt_Init(void);
  15. void Driver_Init(void);
  16. void GPIO_Init(void);
  17. void PWM_Timer_Init(void);
  18. void UART1_Init(void);
  19. void Conf_DMA(uint8_t DMAx, uint8_t DMAPipe, uint16_t DMAAddr, uint8_t DMALen);
  20. #endif