Searched defs:UartHostMethod (Results 1 – 1 of 1) sorted by relevance
34 struct UartHostMethod { struct35 int32_t (*Init)(struct UartHost *host);36 int32_t (*Deinit)(struct UartHost *host);37 int32_t (*Read)(struct UartHost *host, uint8_t *data, uint32_t size);38 int32_t (*Write)(struct UartHost *host, uint8_t *data, uint32_t size);39 int32_t (*GetBaud)(struct UartHost *host, uint32_t *baudRate);40 int32_t (*SetBaud)(struct UartHost *host, uint32_t baudRate);41 int32_t (*GetAttribute)(struct UartHost *host, struct UartAttribute *attribute);42 int32_t (*SetAttribute)(struct UartHost *host, struct UartAttribute *attribute);43 int32_t (*SetTransMode)(struct UartHost *host, enum UartTransMode mode);[all …]