Files
discoverpixy/discovery/src/ll_tft.c
t-moe 1aa9194f51 Fixed Drawing of rects in Emulator.
Got frames from pixy to emulator. Slooooow.
2015-04-03 23:53:13 +02:00

34 lines
579 B
C

#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 uint16_t* dat) {
}