24 lines
251 B
C
24 lines
251 B
C
/*
|
||
* Motor.h
|
||
*
|
||
* Created on: 8 апр. 2024 г.
|
||
* Author: seklyuts
|
||
*/
|
||
|
||
#ifndef MOTOR_MOTOR_H_
|
||
#define MOTOR_MOTOR_H_
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
|
||
void InitMotor(void);
|
||
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif /* MOTOR_MOTOR_H_ */
|