mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 00:15:59 +01:00
12 lines
161 B
C
12 lines
161 B
C
|
|
#ifndef DRIVER
|
|
#define DRIVER
|
|
|
|
#include <stdint.h>
|
|
|
|
void driver_write(uint8_t val);
|
|
uint8_t driver_read();
|
|
void driver_init_device();
|
|
|
|
#endif /*include guard*/
|