1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-05-21 06:06:22 +02:00
cdf2018-principal/chef/src/movement.c
2018-05-06 08:14:51 +02:00

22 lines
281 B
C

#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "CF.h"
#include "dimensions.h"
#include "motor.h"
#include "movement.h"
void configureMovement()
{
stop();
}
void aller(struct position* pos);
void deconfigureMovement()
{
stop();
}