Instructions:

1.	Create arrays in images.c. Arrays should be named ImageX[], where X=0-9.
	Arrays sizes must be divisible by 4! If not please pad with 0xFF

2.	In main.c ensure the options under the DEFINES section are correct

3. 	Under the GLOBAL VARIABLES heading ensure that all images are declared and that they are given the correct size
	e.g. extern const uint8_t Image0[512];
	

When code is run, images are copied into external flash. If image is greater than 1 page, it will be automatically split
between pages.

If image is less than 1 page in size then it will be copied to flash but will be the only data in this page. The next
image will be copied to a new page, even though the previous one is not full.