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
Diff: TraceMatrix/Trace.h
- Revision:
- 12:c73ef3123eb8
- Parent:
- 8:ae92c165d2da
- Child:
- 13:a837e142743f
--- a/TraceMatrix/Trace.h Thu Mar 28 18:13:15 2019 +0000
+++ b/TraceMatrix/Trace.h Sun Mar 31 16:39:23 2019 +0000
@@ -1,9 +1,12 @@
#include "mbed.h"
#include "LCD_DISCO_F429ZI.h"
-#define TailleMatrice 9 /*va peut être changer*/
+#define TailleMatrice 12 /*va peut être changer*/
-typedef char matrice[TailleMatrice][TailleMatrice];
+struct matrice {
+ int taille;
+ char tableau[TailleMatrice][TailleMatrice];
+} ;
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.
@@ -13,4 +16,5 @@
//Elements de la banque de symboles
matrice *BS_testDessin(); //Petit symbole pour tester des trucs
-matrice *BS_petitM(); //Un petit M majuscule
\ No newline at end of file
+matrice *BS_petitM(); //Un petit M majuscule
+matrice *BS_Abi();
\ No newline at end of file
