1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-05-02 12:16:44 +00:00
cdf2018-principal/chef/src/movement.h

26 lines
416 B
C

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