]> git.karo-electronics.de Git - oswald.git/blobdiff - ui/LcdDisplay.h
Bluetooth handling, screen reworks for icons
[oswald.git] / ui / LcdDisplay.h
index d06583d16109931189ed43caab06a99ff9905bd0..42152f09182a04aec2af69729e0d11951af62633 100644 (file)
@@ -1,12 +1,13 @@
 #ifndef _LcdDisplay_h
 #define _LcdDisplay_h
 
-#include "oswald-ui.h"
+// #include "oswald_hal.h"
 
+void oswald_draw_bitmap(const uint8_t xstart, const uint8_t ystart, const uint8_t width, const uint8_t height, const void *bmp);
 void DrawLcdLineBresenham(u8t xstart, u8t ystart, u8t xend, u8t yend);
 void DrawLcdLineBresenhamWW(u8t xstart, u8t ystart, u8t xend, u8t yend, u8t thickness);
 u8t WriteLcdCharacter(u8t x, u8t y, u8t Character);
-void WriteLcdString(u8t x, u8t y, char *str);
+u8t WriteLcdString(u8t x, u8t y, char *str);
 void WriteLcdNumber(u8t x, u8t y, s16t number);
 
 #endif