mirror of
https://github.com/modelec/odo_STM32.git
synced 2026-03-18 21:30:38 +01:00
23 lines
271 B
C
23 lines
271 B
C
/*
|
|
* setup.h
|
|
*
|
|
* Created on: Sep 18, 2025
|
|
* Author: Modelec
|
|
*/
|
|
|
|
#ifndef INC_SETUP_H_
|
|
#define INC_SETUP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ModelecOdometrySetup();
|
|
void ModelecOdometryLoop();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* INC_SETUP_H_ */
|