Programme carte strategie (disco)
Dependencies: mbed SerialHalfDuplex SDFileSystem DISCO-F469NI_portrait liaison_Bluetooth ident_crac
Globals/global.h@38:76f886a1c8e6, 2018-05-09 (annotated)
- Committer:
- Sitkah
- Date:
- Wed May 09 19:36:20 2018 +0000
- Revision:
- 38:76f886a1c8e6
- Parent:
- 36:6dd30780bd8e
- Child:
- 42:657b6a573e11
test avant match
Who changed what in which revision?
User | Revision | Line number | New 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_big.h" |
Sitkah | 30:a1e37af4bbde | 22 | #include "LiaisonBluetooth.h" |
Sitkah | 35:742dc6b200b0 | 23 | #include "Evitement.h" |
Sitkah | 29:41e02746041d | 24 | |
Sitkah | 29:41e02746041d | 25 | //#include "peripheriques.h" |
Sitkah | 30:a1e37af4bbde | 26 | extern Serial pc; |
Sitkah | 31:833fc481b002 | 27 | extern Serial rn42_Tx; |
Sitkah | 31:833fc481b002 | 28 | extern Serial rn42_Rx; |
Sitkah | 38:76f886a1c8e6 | 29 | extern Serial rn42_pr; |
Sitkah | 31:833fc481b002 | 30 | extern LiaisonBluetooth liaison_Tx; |
Sitkah | 31:833fc481b002 | 31 | extern LiaisonBluetooth liaison_Rx; |
Sitkah | 38:76f886a1c8e6 | 32 | extern LiaisonBluetooth liaison_pr; |
Sitkah | 31:833fc481b002 | 33 | |
antbig | 0:ad97421fb1fb | 34 | extern CAN can1; |
Sitkah | 29:41e02746041d | 35 | extern CAN can2; |
antbig | 0:ad97421fb1fb | 36 | extern CANMessage msgRxBuffer[SIZE_FIFO]; |
antbig | 0:ad97421fb1fb | 37 | extern unsigned char FIFO_ecriture; |
Sitkah | 29:41e02746041d | 38 | extern char strat_sd[10][SIZE+8]; |
Sitkah | 29:41e02746041d | 39 | extern char PATH[10][SIZE+8]; |
Sitkah | 29:41e02746041d | 40 | |
Sitkah | 29:41e02746041d | 41 | extern signed char Strategie; |
Sitkah | 29:41e02746041d | 42 | |
Sitkah | 29:41e02746041d | 43 | extern int ack_bluetooth; |
antbig | 0:ad97421fb1fb | 44 | |
antbig | 8:0edc7dfb7f7e | 45 | extern DigitalOut led1,led2,led3,led4; |
Sitkah | 30:a1e37af4bbde | 46 | extern LCD_DISCO_F469NI lcd; |
antbig | 0:ad97421fb1fb | 47 | extern char cheminFileStart[SIZE+8]; //Le chemin du fichier de strat, utiliser strcpy(cheminFileStart,"/local/strat.txt"); |
Sitkah | 38:76f886a1c8e6 | 48 | extern short SCORE_GLOBAL; |
Sitkah | 38:76f886a1c8e6 | 49 | extern short SCORE_PR, SCORE_GR; |
Sitkah | 29:41e02746041d | 50 | |
antbig | 0:ad97421fb1fb | 51 | extern struct S_Instruction strat_instructions[SIZE_BUFFER_FILE]; //La liste des instruction chargé en mémoire |
antbig | 0:ad97421fb1fb | 52 | extern unsigned char nb_instructions; //Le nombre d'instruction dans le fichier de strategie |
antbig | 0:ad97421fb1fb | 53 | extern unsigned char actual_instruction;//La ligne de l'instruction en cours d'execution |
antbig | 0:ad97421fb1fb | 54 | |
ClementBreteau | 18:cc5fec34ed9c | 55 | extern unsigned short telemetreDistance; |
Sitkah | 30:a1e37af4bbde | 56 | extern char couleur1, couleur2, couleur3; |
antbig | 1:116040d14164 | 57 | extern unsigned char InversStrat;//Si à 1, indique que l'on part de l'autre cote de la table(inversion des Y) |
antbig | 1:116040d14164 | 58 | |
antbig | 1:116040d14164 | 59 | extern unsigned short waitingAckID;//L'id du ack attendu |
antbig | 1:116040d14164 | 60 | extern unsigned short waitingAckFrom;//La provenance du ack attendu |
Sitkah | 29:41e02746041d | 61 | extern char modeTelemetre; // Si à 1, indique que l'on attend une reponse du telemetre |
Sitkah | 29:41e02746041d | 62 | |
Sitkah | 29:41e02746041d | 63 |