23 lines
447 B
C
23 lines
447 B
C
/*
|
|
* init.h
|
|
*
|
|
* Created on: 2025年10月9日
|
|
* Author: jim_liao
|
|
*/
|
|
|
|
#ifndef INC_INIT_H_
|
|
#define INC_INIT_H_
|
|
|
|
void SYS_Config();
|
|
void gpio_config();
|
|
void opa_config();
|
|
void adc_config();
|
|
void pwm_config();
|
|
void pwm_set_duty(uint16_t ch1_val, uint16_t ch2_val, uint16_t ch3_val);
|
|
void pwm_enable();
|
|
void pwm_disable();
|
|
void pwm_brake();
|
|
void uart_config();
|
|
void UART_Send_Wait(UART_Type *pHUart, uint16_t value);
|
|
#endif /* INC_INIT_H_ */
|