HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
printer.h
Go to the documentation of this file.
1 
15 #ifndef _PRINTER_H
16 #define _PRINTER_H
17 
18 #include <user_config.h>
19 
20 /* printer.c */
21 void printer_open ( char *name );
22 void printer_init ( void );
23 void printer_close ( void );
24 int receive_plot_flush ( void );
25 void printer_buffer ( uint16_t val );
26 int PRINTER_COMMANDS ( uint8_t ch );
27 void plot_echo ( int gpib_address );
28 #endif // #ifndef _PRINTER_H
receive_plot_flush
int receive_plot_flush(void)
Write Plotter data and flush.
Definition: printer.c:151
plot_echo
void plot_echo(int gpib_address)
printer_close
void printer_close(void)
Close current plot file and reset states.
Definition: printer.c:118
printer_init
void printer_init(void)
Initialize plotter structures and state.
Definition: printer.c:98
printer_buffer
void printer_buffer(uint16_t val)
Buffer Plotter data and flush when buffer is full.
Definition: printer.c:186
printer_open
void printer_open(char *name)
Open a file to receive plot data using POSIX functions.
Definition: printer.c:43
PRINTER_COMMANDS
int PRINTER_COMMANDS(uint8_t ch)
GPIB Secondary Command Printer commands.
Definition: printer.c:227