1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-05-01 19:56:44 +00:00
cdf2018-principal/chef/src/position.h

31 lines
578 B
C

/*
* Fonctions de calcul de la position du robot
*/
#ifndef __POSITION_H_
#define __POSITION_H_
// #define INVERSE_L_CODER
#define INVERSE_R_CODER
#define POSITION_INTERVAL 10
// Structures
struct __attribute__ ((packed)) position {
float x;
float y;
float o;
};
// Fonctions
void configurePosition();
void deconfigurePosition();
void getCoders(long* l, long* r);
unsigned int getPositionNewer(struct position* pos, unsigned int lastCalc);
unsigned int getPosition(struct position* pos);
void setPosition(struct position* pos);
void resetPosition();
#endif