1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-26 13:09:01 +02:00
cdf2018-principal/arduino/position.h

21 lines
281 B
C
Raw Normal View History

2018-02-14 18:07:10 +01:00
/*
* Outils assurant la connaissance de la postion du robot
*/
#ifndef __POSITION_H_
#define __POSITION_H_
#include <FreeRTOS.h>
#include <task.h>
2018-02-14 18:27:04 +01:00
#include "ACsignals.h"
struct position actuel;
2018-02-14 18:07:10 +01:00
TaskHandle_t tPosition;
void TaskPosition();
void configurePosition();
#endif