Basic Example / test application for the on-board MICRON QSPI-Flash. Ported from DISCO_L476VG_QSPI. Added printing on serial output and LCD screen.

Dependencies:   BSP_DISCO_F746NG LCD_DISCO_F746NG QSPI_DISCO_F746NG TS_DISCO_F746NG mbed

Committer:
capsavon
Date:
Wed Oct 21 18:08:19 2015 +0000
Revision:
3:13b323fb08e8
Parent:
2:a655d6640167
Child:
4:95cde28a5cf1
Callbacks work !

Who changed what in which revision?

UserRevisionLine numberNew contents of line
capsavon 2:a655d6640167 1 #ifndef INCLUDE_MAIN
capsavon 2:a655d6640167 2 #define INCLUDE_MAIN
capsavon 2:a655d6640167 3
capsavon 3:13b323fb08e8 4 #include "MenuGUIButton.h"
capsavon 3:13b323fb08e8 5 #include "MenuGUIMenu.h"
capsavon 3:13b323fb08e8 6 #include "MenuGUI.h"
capsavon 3:13b323fb08e8 7 #include "USBMIDI.h"
capsavon 2:a655d6640167 8
capsavon 3:13b323fb08e8 9 // Functions declaration
capsavon 3:13b323fb08e8 10 void led_power (int state);
capsavon 3:13b323fb08e8 11 void led_on (void);
capsavon 3:13b323fb08e8 12 void led_off (void);
capsavon 3:13b323fb08e8 13 void led_toggle (void);
capsavon 2:a655d6640167 14
capsavon 2:a655d6640167 15 #endif