Program to benchmark the speed of the different file system options versus placing data directly into arrays.

Dependencies:   DMBasicGUI DMSupport

This program is used to measure the performance of the different file system options on the LPC4088 Display Module.

The performance wiki page and more specifically the software part describes this program and the output.

As the program doesn't use the display at all it can be used on both the 4.3" and 5" display modules.

Committer:
embeddedartists
Date:
Tue Nov 05 06:44:07 2019 +0000
Revision:
6:47b4bed9fa13
Parent:
3:1716747cba16
Updates related to mbed OS 5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 3:1716747cba16 1 extern const unsigned char img_qspi_480x272_flowers_bmp[];
embeddedartists 3:1716747cba16 2 extern const unsigned int img_size_qspi_480x272_flowers_bmp;
embeddedartists 3:1716747cba16 3
embeddedartists 3:1716747cba16 4 extern const unsigned char img_qspi_480x272_flowers_png[];
embeddedartists 3:1716747cba16 5 extern const unsigned int img_size_qspi_480x272_flowers_png;
embeddedartists 3:1716747cba16 6
embeddedartists 3:1716747cba16 7 extern const unsigned char img_qspi_480x272_flowers_raw[];
embeddedartists 3:1716747cba16 8 extern const unsigned int img_size_qspi_480x272_flowers_raw;
embeddedartists 3:1716747cba16 9
embeddedartists 3:1716747cba16 10 extern const unsigned char img_qspi_480x272_red_bmp[];
embeddedartists 3:1716747cba16 11 extern const unsigned int img_size_qspi_480x272_red_bmp;
embeddedartists 3:1716747cba16 12
embeddedartists 3:1716747cba16 13 extern const unsigned char img_qspi_480x272_red_png[];
embeddedartists 3:1716747cba16 14 extern const unsigned int img_size_qspi_480x272_red_png;
embeddedartists 3:1716747cba16 15
embeddedartists 3:1716747cba16 16 extern const unsigned char img_qspi_480x272_red_raw[];
embeddedartists 3:1716747cba16 17 extern const unsigned int img_size_qspi_480x272_red_raw;
embeddedartists 3:1716747cba16 18