-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.c
49 lines (41 loc) · 1.05 KB
/
global.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "global.h"
RT_TASK tbattery;
RT_TASK tcalibrer;
RT_TASK tcommuniquer;
RT_TASK tconnect;
RT_TASK tdeplacer;
RT_TASK tenvoyer;
RT_TASK tlocaliser;
RT_TASK twatchdog;
RT_MUTEX mutexEtat;
RT_MUTEX mutexMove;
RT_MUTEX mutexCamera;
RT_MUTEX mutexImage;
RT_MUTEX mutexPosition;
RT_MUTEX mutexArena;
RT_MUTEX mutexCalibration;
RT_SEM semConnecterRobot;
RT_SEM semWatchdog;
RT_SEM semBatterie;
RT_SEM semDetectArena;
RT_SEM semLocalisation;
RT_QUEUE queueMsgGUI;
int etatCommMoniteur = 1;
int etatCommRobot = 1;
int etatLocalisation = ACTION_STOP_COMPUTE_POSITION; // par défaut le thread tlocaliser ne calcul pas la position!
char calibration = 0; // 0 pas de calibration, 1 demande de calibration, 2 reussite
DPosition *position;
DRobot *robot;
DMovement *move;
DServer *serveur;
DImage *image;
DArena *arena;
int MSG_QUEUE_SIZE = 10;
int PRIORITY_BATTERY = 5;
int PRIORITY_CALIBRER = 25;
int PRIORITY_TCOMMUNIQUER = 50;
int PRIORITY_TCONNECT = 35;
int PRIORITY_TDEPLACER = 20;
int PRIORITY_TENVOYER = 40;
int PRIORITY_LOCALISER = 15;
int PRIORITY_WATCHDOG = 30;