1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-28 22:19:00 +02:00
cdf2018-principal/chef/src/parcours.h

17 lines
343 B
C
Raw Normal View History

2018-04-30 16:15:47 +02:00
#ifndef __PARCOURS_H__
#define __PARCOURS_H__
#include <stdbool.h>
#define TEMPS_PARCOURS 100
2018-05-02 08:26:35 +02:00
void configureParcours();
2018-04-30 16:15:47 +02:00
void prepareParcours(bool orange);
void startParcours();
// Returns : -1 if parcours ended, N ms for the next time it should be checked
int updateParcours();
void stopParcours();
void* TaskParcours(void* pdata);
#endif