mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-08-20 22:14:34 +08:00
15 lines
216 B
C
15 lines
216 B
C
#ifndef __AXIS_C_INTERFACE_H
|
|
#define __AXIS_C_INTERFACE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void axis_thread_entry(void const * temp_motor_ptr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __AXIS_C_INTERFACE_H */
|