1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-26 04:59:00 +02:00
cdf2018-principal/chef/src/movement.c

22 lines
281 B
C
Raw Normal View History

2018-05-06 08:14:51 +02:00
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
2018-05-01 08:45:02 +02:00
#include "CF.h"
2018-05-06 08:14:51 +02:00
#include "dimensions.h"
#include "motor.h"
#include "movement.h"
2018-05-01 08:45:02 +02:00
2018-04-04 16:17:13 +02:00
void configureMovement()
{
2018-05-01 08:45:02 +02:00
stop();
}
2018-04-04 16:17:13 +02:00
void aller(struct position* pos);
2018-05-01 09:03:33 +02:00
void deconfigureMovement()
{
stop();
}