Adding support for boot up Logo's (#32)

This brings across a set of commits to support loading boot up images from a specific location in flash. And also creating a generator tool to make files to put images in said position.
This commit is contained in:
Ben V. Brown
2017-07-23 16:54:12 +10:00
committed by GitHub
parent 967d62f826
commit cb8bc643c4
23 changed files with 1123 additions and 392 deletions

View File

@@ -2,7 +2,7 @@
* Oled.h
* Functions for writing to the OLED screen
* Basically wraps drawing text and numbers to the OLED
* Uses font.h -> 14 pixel wide fixed width
* Uses font.h -> 12 pixel wide fixed width
*/
#ifndef _OLED_SSD1306_H
#define _OLED_SSD1306_H

View File

@@ -46,4 +46,5 @@ void saveSettings();
void restoreSettings();
uint8_t lookupVoltageLevel(uint8_t level);
void resetSettings();
void showBootLogoIfavailable();
#endif /* SETTINGS_H_ */