Completely useless "about" screen

Paved road for talking Xylos RX and logger
Added test button for Xylos TX
Fixed jammer crashing after loading second time
This commit is contained in:
furrtek 2016-01-30 00:28:05 +01:00
parent 1e71a10346
commit 107c212d88
64 changed files with 3599 additions and 56 deletions

View file

@ -246,6 +246,11 @@ void ILI9341::render_line(const ui::Point p, const uint8_t count, const ui::Colo
io.lcd_write_pixels(line_buffer, count);
}
void ILI9341::render_box(const ui::Point p, const ui::Size s, const ui::Color* line_buffer) {
lcd_start_ram_write(p, s);
io.lcd_write_pixels(line_buffer, s.w * s.h);
}
void ILI9341::drawBMP(const ui::Point p, const uint8_t * bitmap) {
uint32_t pixel_data, pal_data;
uint8_t pal, by, c, count;