mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-10-31 21:56:04 +01:00
18 lines
298 B
C
18 lines
298 B
C
/*
|
|
* Fonctions de déplacment du robot
|
|
*/
|
|
|
|
#ifndef __MOVEMENT_H_
|
|
#define __MOVEMENT_H_
|
|
|
|
#include "position.h"
|
|
|
|
void configureMovement();
|
|
void deconfigureMovement();
|
|
void setDestination(struct position* pos);
|
|
void* TaskMovement(void* pData);
|
|
void enableConsigne();
|
|
void disableConsigne();
|
|
|
|
#endif
|