mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-14 12:26:06 +01:00
21 lines
281 B
C
21 lines
281 B
C
/*
|
|
* Outils assurant la connaissance de la postion du robot
|
|
*/
|
|
|
|
#ifndef __POSITION_H_
|
|
#define __POSITION_H_
|
|
|
|
#include <FreeRTOS.h>
|
|
#include <task.h>
|
|
|
|
#include "ACsignals.h"
|
|
|
|
struct position actuel;
|
|
|
|
TaskHandle_t tPosition;
|
|
|
|
void TaskPosition();
|
|
void configurePosition();
|
|
|
|
#endif
|