generated from hulk/gd32e23x_template_cmake_vscode
12 lines
254 B
C
12 lines
254 B
C
#ifndef ACTUATOR_H
|
|
#define ACTUATOR_H
|
|
|
|
#include "board_config.h"
|
|
#include "gd32e23x.h"
|
|
#include "stdbool.h"
|
|
|
|
void actuator_init(void);
|
|
|
|
void actuator_output(actuator_channel_t channel, uint16_t duty, actuator_direction_t direction);
|
|
|
|
#endif // ACTUATOR_H
|