1
0
Fork 0

Start mvoing hardware drivers to /drivers/ (#1433)

* start driver isolation

* update nyquist and orthodox boards

* update atreus62

* move drivers to avr

* update avr conditional
This commit is contained in:
Jack Humbert 2017-07-10 11:18:47 -04:00 committed by GitHub
parent 8d190d5e25
commit 42d5a324eb
19 changed files with 13 additions and 1582 deletions

17
drivers/avr/ssd1306.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef SSD1306_H
#define SSD1306_H
#include <stdbool.h>
#include <stdio.h>
bool iota_gfx_init(void);
void iota_gfx_task(void);
bool iota_gfx_off(void);
bool iota_gfx_on(void);
void iota_gfx_flush(void);
void iota_gfx_write_char(uint8_t c);
void iota_gfx_write(const char *data);
void iota_gfx_write_P(const char *data);
void iota_gfx_clear_screen(void);
#endif