00001 #ifndef TEMU_BUS_SERIAL_H 00002 #define TEMU_BUS_SERIAL_H 00003 00004 #include "temu-c/Support/Objsys.h" 00005 #include <stdint.h> 00006 00007 #ifdef __cplusplus 00008 extern "C" { 00009 #endif 00010 00012 typedef struct temu_SerialIface { 00014 void (*write)(void *Obj, uint8_t Data); 00015 00017 void (*cts)(void *Obj); 00018 } temu_SerialIface; 00019 00020 OBJSYS_OBJ_TYPE(temu_Serial); 00021 00022 #ifdef __cplusplus 00023 } 00024 #endif 00025 00026 #endif /* ! TEMU_BUS_SERIAL_H */