v2019

Dependencies:   CRAC-Strat_2019 SerialHalfDuplex SDFileSystem DISCO-F469NI_portrait liaison_Bluetooth ident_crac

Dependents:   Codeprincipal_2019 CRAC-Strat_2019

Committer:
Sitkah
Date:
Tue May 01 13:25:42 2018 +0000
Revision:
35:742dc6b200b0
Parent:
31:833fc481b002
Child:
36:6dd30780bd8e
bug turn

Who changed what in which revision?

UserRevisionLine numberNew contents of line
antbig 0:ad97421fb1fb 1 #include "mbed.h"
Sitkah 29:41e02746041d 2 #include <CAN.h>
Sitkah 29:41e02746041d 3 #include <DirHandle.h>
Sitkah 29:41e02746041d 4 #include "SDFileSystem.h"
Sitkah 30:a1e37af4bbde 5 #include "conv_data.h"
Sitkah 29:41e02746041d 6 #include "Config_big.h"
antbig 0:ad97421fb1fb 7 #include "constantes.h"
antbig 0:ad97421fb1fb 8 #include "ident_crac.h"
Sitkah 29:41e02746041d 9 #include "Instruction.h"
Sitkah 29:41e02746041d 10 #include "Strategie.h"
Sitkah 29:41e02746041d 11 #include "lecture_repertoire.h"
Sitkah 29:41e02746041d 12 #include "StrategieManager.h"
Sitkah 29:41e02746041d 13 #include "SerialHalfDuplex.h"
antbig 0:ad97421fb1fb 14 #include "debug.h"
antbig 0:ad97421fb1fb 15 #include "Asservissement.h"
Sitkah 29:41e02746041d 16 #include "TS_DISCO_F469NI.h"
Sitkah 29:41e02746041d 17 #include "LCD_DISCO_F469NI.h"
Sitkah 29:41e02746041d 18 #include "fonts.h"
Sitkah 29:41e02746041d 19 #include "F469_GUI.hpp"
ClementBreteau 14:c8fc06c4887f 20 #include "Telemetre.h"
Sitkah 29:41e02746041d 21 #include "Config_small.h"
Sitkah 29:41e02746041d 22 #include "Config_big.h"
Sitkah 30:a1e37af4bbde 23 #include "LiaisonBluetooth.h"
Sitkah 35:742dc6b200b0 24 #include "Evitement.h"
Sitkah 29:41e02746041d 25
Sitkah 29:41e02746041d 26 //#include "peripheriques.h"
Sitkah 30:a1e37af4bbde 27 extern Serial pc;
Sitkah 31:833fc481b002 28 extern Serial rn42_Tx;
Sitkah 31:833fc481b002 29 extern Serial rn42_Rx;
Sitkah 31:833fc481b002 30 extern LiaisonBluetooth liaison_Tx;
Sitkah 31:833fc481b002 31 extern LiaisonBluetooth liaison_Rx;
Sitkah 31:833fc481b002 32
antbig 0:ad97421fb1fb 33 extern CAN can1;
Sitkah 29:41e02746041d 34 extern CAN can2;
antbig 0:ad97421fb1fb 35 extern CANMessage msgRxBuffer[SIZE_FIFO];
antbig 0:ad97421fb1fb 36 extern unsigned char FIFO_ecriture;
Sitkah 29:41e02746041d 37 extern char strat_sd[10][SIZE+8];
Sitkah 29:41e02746041d 38 extern char PATH[10][SIZE+8];
Sitkah 29:41e02746041d 39
Sitkah 29:41e02746041d 40 extern signed char Strategie;
Sitkah 29:41e02746041d 41
Sitkah 29:41e02746041d 42 extern int ack_bluetooth;
antbig 0:ad97421fb1fb 43
antbig 8:0edc7dfb7f7e 44 extern DigitalOut led1,led2,led3,led4;
Sitkah 30:a1e37af4bbde 45 extern LCD_DISCO_F469NI lcd;
antbig 0:ad97421fb1fb 46 extern char cheminFileStart[SIZE+8]; //Le chemin du fichier de strat, utiliser strcpy(cheminFileStart,"/local/strat.txt");
Sitkah 29:41e02746041d 47
Sitkah 29:41e02746041d 48
antbig 0:ad97421fb1fb 49 extern struct S_Instruction strat_instructions[SIZE_BUFFER_FILE]; //La liste des instruction chargé en mémoire
antbig 0:ad97421fb1fb 50 extern unsigned char nb_instructions; //Le nombre d'instruction dans le fichier de strategie
antbig 0:ad97421fb1fb 51 extern unsigned char actual_instruction;//La ligne de l'instruction en cours d'execution
antbig 0:ad97421fb1fb 52
ClementBreteau 18:cc5fec34ed9c 53 extern unsigned short telemetreDistance;
Sitkah 30:a1e37af4bbde 54 extern char couleur1, couleur2, couleur3;
antbig 1:116040d14164 55 extern unsigned char InversStrat;//Si à 1, indique que l'on part de l'autre cote de la table(inversion des Y)
antbig 1:116040d14164 56
antbig 1:116040d14164 57 extern unsigned short waitingAckID;//L'id du ack attendu
antbig 1:116040d14164 58 extern unsigned short waitingAckFrom;//La provenance du ack attendu
Sitkah 29:41e02746041d 59 extern char modeTelemetre; // Si à 1, indique que l'on attend une reponse du telemetre
Sitkah 29:41e02746041d 60
Sitkah 29:41e02746041d 61