mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-09-13 15:49:20 +08:00
17 lines
227 B
C
17 lines
227 B
C
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void init_configuration(void);
|
|
void save_configuration(void);
|
|
void erase_configuration(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CONFIG_H */
|