Refactored discovery, to use new project structure. Almost ready.

This commit is contained in:
t-moe
2015-04-03 22:16:02 +02:00
parent cab86098c5
commit 9a1d12ae2e
9 changed files with 118 additions and 63 deletions

33
discovery/src/ll_tft.c Normal file
View File

@@ -0,0 +1,33 @@
#include "ll_tft.h"
bool ll_tft_init() {
return false;
}
void ll_tft_clear(uint16_t color) {
}
void ll_tft_draw_line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {
}
void ll_tft_draw_pixel(uint16_t x,uint16_t y,uint16_t color) {
}
void ll_tft_draw_rectangle(uint16_t x1,uint16_t y1,uint16_t x2,uint16_t y2, uint16_t color) {
}
void ll_tft_fill_rectangle(uint16_t x1,uint16_t y1,uint16_t x2,uint16_t y2, uint16_t color) {
}
void ll_tft_draw_bitmap_unscaled(uint16_t x, uint16_t y, uint16_t width, uint16_t height, const uint8_t* dat) {
}