homologation gros robot
Fork of CRAC-Strat_2017_HOMOLOGATION_PETIT_ROBOT by
main.cpp@8:0edc7dfb7f7e, 2016-04-27 (annotated)
- Committer:
- antbig
- Date:
- Wed Apr 27 13:05:03 2016 +0000
- Revision:
- 8:0edc7dfb7f7e
- Parent:
- 7:dcce34c7e06e
- Child:
- 9:d0042422d95a
D?but des actions du gros robot
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
antbig | 0:ad97421fb1fb | 1 | #include "global.h" |
antbig | 0:ad97421fb1fb | 2 | |
antbig | 0:ad97421fb1fb | 3 | CAN can1(p30,p29); // Rx&Tx pour le CAN |
antbig | 0:ad97421fb1fb | 4 | CANMessage msgRxBuffer[SIZE_FIFO]; // buffer en réception pour le CAN |
antbig | 0:ad97421fb1fb | 5 | unsigned char FIFO_ecriture=0; //Position du fifo pour la reception CAN |
antbig | 0:ad97421fb1fb | 6 | |
antbig | 0:ad97421fb1fb | 7 | extern "C" void mbed_reset();//Pour pouvoir reset la carte |
antbig | 0:ad97421fb1fb | 8 | |
antbig | 0:ad97421fb1fb | 9 | DigitalOut led1(LED1);//Led d'indication de problème, si elle clignote, c'est pas bon |
antbig | 1:116040d14164 | 10 | DigitalOut led2(LED2);//Led d'indication de problème, si elle clignote, c'est pas bon |
antbig | 8:0edc7dfb7f7e | 11 | DigitalOut led3(LED3);//Led d'indication de problème, si elle clignote, c'est pas bon |
antbig | 8:0edc7dfb7f7e | 12 | DigitalOut led4(LED4);//Led d'indication de problème, si elle clignote, c'est pas bon |
antbig | 0:ad97421fb1fb | 13 | |
antbig | 0:ad97421fb1fb | 14 | /****************************************************************************************/ |
antbig | 0:ad97421fb1fb | 15 | /* FUNCTION NAME: canRx_ISR */ |
antbig | 0:ad97421fb1fb | 16 | /* DESCRIPTION : Interruption en réception sur le CAN */ |
antbig | 0:ad97421fb1fb | 17 | /****************************************************************************************/ |
antbig | 0:ad97421fb1fb | 18 | void canRx_ISR (void) |
antbig | 0:ad97421fb1fb | 19 | { |
antbig | 0:ad97421fb1fb | 20 | if (can1.read(msgRxBuffer[FIFO_ecriture])) { |
antbig | 0:ad97421fb1fb | 21 | if(msgRxBuffer[FIFO_ecriture].id==RESET_STRAT) mbed_reset(); |
antbig | 0:ad97421fb1fb | 22 | else FIFO_ecriture=(FIFO_ecriture+1)%SIZE_FIFO; |
antbig | 0:ad97421fb1fb | 23 | } |
antbig | 0:ad97421fb1fb | 24 | } |
antbig | 0:ad97421fb1fb | 25 | |
antbig | 0:ad97421fb1fb | 26 | |
antbig | 0:ad97421fb1fb | 27 | /**********************************************************************************/ |
antbig | 0:ad97421fb1fb | 28 | /* FUNCTION NAME: main */ |
antbig | 0:ad97421fb1fb | 29 | /* DESCRIPTION : Fonction principal du programme */ |
antbig | 0:ad97421fb1fb | 30 | /**********************************************************************************/ |
antbig | 0:ad97421fb1fb | 31 | int main() { |
antbig | 0:ad97421fb1fb | 32 | can1.frequency(1000000); // fréquence de travail 1Mbit/s |
antbig | 0:ad97421fb1fb | 33 | can1.attach(&canRx_ISR); // création de l'interrupt attachée à la réception sur le CAN |
antbig | 0:ad97421fb1fb | 34 | |
antbig | 8:0edc7dfb7f7e | 35 | //wait_ms(1000); |
antbig | 8:0edc7dfb7f7e | 36 | //tactile_printf("Initialisation cartes..."); |
antbig | 0:ad97421fb1fb | 37 | initRobot();//Initialisation du robot |
antbig | 0:ad97421fb1fb | 38 | |
antbig | 8:0edc7dfb7f7e | 39 | //wait_ms(5000);//Attente pour que toutes les cartes se lancent et surtout le CANBlue |
antbig | 1:116040d14164 | 40 | |
antbig | 0:ad97421fb1fb | 41 | /** |
antbig | 0:ad97421fb1fb | 42 | A retirer lors de l'utilisation avec selecteur de stratégie sur IHM |
antbig | 0:ad97421fb1fb | 43 | **/ |
antbig | 0:ad97421fb1fb | 44 | //strcpy(cheminFileStart,"/local/test.txt");//On ouvre le fichier test.txt |
antbig | 0:ad97421fb1fb | 45 | //loadAllInstruction();//Mise en cache de toute les instructions |
antbig | 0:ad97421fb1fb | 46 | |
antbig | 0:ad97421fb1fb | 47 | while(true) { |
antbig | 8:0edc7dfb7f7e | 48 | //automate_process();//Boucle dans l'automate principal |
antbig | 0:ad97421fb1fb | 49 | canProcessRx();//Traitement des trames CAN en attente |
antbig | 0:ad97421fb1fb | 50 | AX12_doLoop();//Vérification de la position des AX12 |
antbig | 0:ad97421fb1fb | 51 | } |
antbig | 0:ad97421fb1fb | 52 | } |