SparkFun Forums 

Where electronics enthusiasts find answers.

General MicroView Support area - You have questions, find your answers here.

Moderators: marcus@geekammo, Help@GeekAmmo

By scotta
#176183
The logo isn't in the boot loader. It's in the MicoView library.

In file MicroView.cpp find the following line near the beginning (line 60 or close to it):
Code: Select all
static uint8_t screenmemory [] = {
Change it to:
Code: Select all
static uint8_t screenmemory [LCDWIDTH * LCDPAGES];
Then delete all the following lines containing the initialisation data, up to and including (line 114 or close to it):
Code: Select all
};
Note that if you're not concerned about saving about 390 bytes of program space, just doing a uView.clear(PAGE) immediately after uView.begin() will clear the screen buffer and prevent the logo from being displayed.