mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-14 12:26:06 +01:00
19 lines
241 B
C
19 lines
241 B
C
/*
|
|
* Outils pour envoyer des informations de debug au chef
|
|
*/
|
|
|
|
#ifndef __DEBUG_H_
|
|
#define __DEBUG_H_
|
|
|
|
#include <FreeRTOS.h>
|
|
#include <task.h>
|
|
|
|
TaskHandle_t tDebug;
|
|
|
|
struct A2CI_DBGs debug;
|
|
|
|
void TaskDebug();
|
|
void configureDebug();
|
|
|
|
#endif
|