You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
319 B
21 lines
319 B
/* priv_epd.h - private definitions for libepd */ |
|
|
|
#ifndef PRIV_EPD_H_ |
|
#define PRIV_EPD_H_ |
|
|
|
/* Includes */ |
|
#include "epd.h" |
|
|
|
/* Definitions */ |
|
|
|
/* Data Structures */ |
|
struct epd_s { |
|
epd_spi_write spi_write, |
|
epd_spi_cs spi_cs, |
|
epd_dc dc, |
|
void *udata |
|
}; |
|
|
|
/* Function Prototypes */ |
|
|
|
#endif /* PRIV_EPD_H_ */ |