1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-16 17:13:15 +02:00
cdf2018-principal/chef/src/position.h

25 lines
315 B
C

/*
* Fonctions de calcul de la position du robot
*/
#ifndef __POSITION_H_
#define __POSITION_H_
#include "CF.h"
#include <pthread.h>
// Structures
struct __attribute__ ((packed)) position {
float x;
float y;
float o;
};
// Fonctions
void configurePosition();
void deconfigurePosition();
#endif