diff options
Diffstat (limited to 'include/ioports.h')
-rw-r--r-- | include/ioports.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/ioports.h b/include/ioports.h index d7e19e1..91ca6fb 100644 --- a/include/ioports.h +++ b/include/ioports.h @@ -53,3 +53,14 @@ typedef struct { * like the table in the 8260UM (and in the hymod manuals). */ extern const iop_conf_t iop_conf_tab[4][32]; + +typedef struct { + unsigned char port; + unsigned char pin; + int dir; + int open_drain; + int assign; +} qe_iop_conf_t; + +#define QE_IOP_TAB_END (-1) + |