![]() |
ChibiOS/RT Architecture - Reference Manual - Guides |
Data streams. More...
Go to the source code of this file.
Data Structures | |
| struct | BaseSequentialStreamVMT |
BaseSequentialStream virtual methods table. More... | |
| struct | BaseSequentialStream |
| Base stream class. More... | |
Defines | |
| #define | _base_sequential_stream_methods |
| BaseSequentialStream specific methods. | |
| #define | _base_sequential_stream_data |
BaseSequentialStream specific data. | |
| #define | chSequentialStreamWrite(ip, bp, n) ((ip)->vmt->write(ip, bp, n)) |
| Sequential Stream write. | |
| #define | chSequentialStreamRead(ip, bp, n) ((ip)->vmt->read(ip, bp, n)) |
| Sequential Stream read. | |
Data streams.
This header defines abstract interfaces useful to access generic data streams in a standardized way.
Definition in file chstreams.h.
1.7.1