1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-05-13 08:48:06 +00:00
cdf2018-principal/chef/src/movement.h

24 lines
361 B
C

/*
* Fonctions de déplacment du robot
*/
#ifndef __MOVEMENT_H_
#define __MOVEMENT_H_
#define ANGLE_INSIGNIFIANT NAN
#define ENABLE_SECURITE
#define SECURITE_MARGE 300
#include "position.h"
void configureMovement();
void deconfigureMovement();
void setDestination(struct position* pos);
void* TaskMovement(void* pData);
void waitDestination();
#endif