Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed APDS_9960 mbed-rtos
Diff: include/cJeu.h
- Revision:
- 38:418278e5eb6b
- Parent:
- 36:f58a566595ad
--- a/include/cJeu.h Sun Apr 24 20:15:03 2016 +0000 +++ b/include/cJeu.h Sun Apr 24 21:35:57 2016 +0000 @@ -13,6 +13,9 @@ #include "cmsis_os.h" #define START_THREAD 1 +//Déclaration de la classe cJeu, classe principale du système + +//structure pour la Message Queue typedef struct { int val; } message_t; @@ -28,14 +31,10 @@ unsigned char _detec; osMessageQId* _queue ; osPoolId* _pool; - //////////////////////////////////////////////////// public: // CONSTRUCTEURS cJeu(); - //// - //cJeu(unsigned char, unsigned char); cJeu(unsigned char, unsigned char); - // DESTRUCTEUR ~cJeu(); // SETTERS @@ -54,7 +53,6 @@ void nouvelleManche(); bool partieEnCours(); void fin(); - /////////////////////// void afficherScore(); };