1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-07-01 07:15:24 +02:00
cdf2018-principal/arduino/position.h

25 lines
356 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"
2018-03-26 10:06:32 +02:00
#include "AFsignals.h"
2018-02-14 18:27:04 +01:00
struct position actuel;
2018-03-26 10:06:32 +02:00
struct F2AI_CODERs deltaCoder;
2018-02-14 18:07:10 +01:00
TaskHandle_t tPosition;
2018-03-26 10:06:32 +02:00
uint16_t nbCalcPos;
2018-02-14 18:07:10 +01:00
void TaskPosition();
void configurePosition();
#endif