/** * \file * * \brief Empty user application template * */ /** * \mainpage User Application template doxygen documentation * * \par Empty user application template * * Bare minimum empty user application template * * \par Content * * -# Include the ASF header files (through asf.h) * -# "Insert system clock initialization code here" comment * -# Minimal main function that starts with a call to board_init() * -# "Insert application code here" comment * */ /* * Include header files for all drivers that have been imported from * Atmel Software Framework (ASF). */ /* * Support and FAQ: visit Microchip Support */ #include #include "Paint.h" uint8_t *BlackImage; void display_splash(void); int main (void) { board_init(); sysclk_init(); gfx_mono_init(); delay_ms(500); while (1) { //ssd1306_display_on(); //delay_ms(100); display_splash(); } } void display_splash(void) { gfx_mono_draw_string("Up", 90, 8, &sysfont); }