![]() |
PropWare
3.0.0.229
C++ objects and CMake build system for Parallax Propeller
|
Contains driver API for stdio devices. More...
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Classes | |
| struct | __driver |
| Generic and customizable driver struct for stdio devices. More... | |
Typedefs | |
| typedef struct __driver | _Driver |
Functions | |
| int | _null_read (FILE *fp, unsigned char *buf, int size) |
| int | _null_write (FILE *fp, unsigned char *buf, int size) |
| int | _term_read (FILE *fp, unsigned char *buf, int size) |
| int | _term_write (FILE *fp, unsigned char *buf, int size) |
Variables | |
| _Driver * | _driverlist [] |
| Device driver array of __driver structs. More... | |
Contains driver API for stdio devices.
Copyright (c) 2011-2012 by Parallax, Inc. All rights MIT Licensed.
Definition in file driver.h.
Typedef for the _Driver struct
This struct is used by stdio. It lets a program define custom devices.
Use this when no other read function is applicable
Use this when no other write function is applicable
Uses getbyte function to do cooked I/O input
Uses putbyte function to do cooked I/O output
| _Driver* _driverlist[] |
Device driver array of __driver structs.
Definition at line 7 of file addfiledriver.c.
1.8.17