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: LCD_DISCO_F429ZI mbed BSP_DISCO_F429ZI
TraceMatrix/Trace.h@8:ae92c165d2da, 2019-03-28 (annotated)
- Committer:
- ascheriit
- Date:
- Thu Mar 28 16:59:28 2019 +0000
- Revision:
- 8:ae92c165d2da
- Child:
- 12:c73ef3123eb8
Ajout des fonctions Trace. Elles marchent bien.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ascheriit | 8:ae92c165d2da | 1 | #include "mbed.h" |
| ascheriit | 8:ae92c165d2da | 2 | #include "LCD_DISCO_F429ZI.h" |
| ascheriit | 8:ae92c165d2da | 3 | |
| ascheriit | 8:ae92c165d2da | 4 | #define TailleMatrice 9 /*va peut être changer*/ |
| ascheriit | 8:ae92c165d2da | 5 | |
| ascheriit | 8:ae92c165d2da | 6 | typedef char matrice[TailleMatrice][TailleMatrice]; |
| ascheriit | 8:ae92c165d2da | 7 | |
| ascheriit | 8:ae92c165d2da | 8 | void DisplayMatrix(int,int,matrice*,int,long long int); //Cett foction prend en argument une position initialle, une matrce (représentée par un nombre binaire de coté² bits) ,une taille de pixel et une couleur et trace ce qui est repésenté par la matrice. |
| ascheriit | 8:ae92c165d2da | 9 | |
| ascheriit | 8:ae92c165d2da | 10 | void DM_Test(); |
| ascheriit | 8:ae92c165d2da | 11 | |
| ascheriit | 8:ae92c165d2da | 12 | |
| ascheriit | 8:ae92c165d2da | 13 | //Elements de la banque de symboles |
| ascheriit | 8:ae92c165d2da | 14 | |
| ascheriit | 8:ae92c165d2da | 15 | matrice *BS_testDessin(); //Petit symbole pour tester des trucs |
| ascheriit | 8:ae92c165d2da | 16 | matrice *BS_petitM(); //Un petit M majuscule |
