HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
printer.c
Go to the documentation of this file.
1 
15 #include "user_config.h"
16 
17 #include "defines.h"
18 
19 #include "drives.h"
20 
21 #include "gpib_hal.h"
22 #include "gpib.h"
23 #include "gpib_task.h"
24 #include "printer.h"
25 #include "posix.h"
26 #include "delay.h"
27 #include "debug.h"
28 
31 
33 uint8_t plot_str[] = { 0x3f, 0x5f, 0x47, 0x21 };
34 
42 
43 void printer_open(char *name)
44 {
45 
46  char *ptr;
47 
48  if(!name)
49  {
50  time_t seconds;
51  tm_t *tc;
52  ts_t ts;
53  char fname[64];
54 
55  clock_gettime(0, (ts_t *) &ts);
56  seconds = ts.tv_sec;
57  tc = gmtime(&seconds);
58  sprintf(fname,"/plot-%02d%s%04d-%02d%02d%02d.plt",
59  tc->tm_mday,
61  tc->tm_year + 1900,
62  tc->tm_hour,
63  tc->tm_min,
64  tc->tm_sec);
65  ptr = fname;
66  }
67  else
68  {
69  ptr = name;
70  }
71 
73  printf("Capturing plot to:%s\n", ptr);
74 
75  plot.fp = fopen(ptr,"wb");
76  if(plot.fp == NULL)
77  {
79  {
80  perror("open failed");
81  printf("exiting...\n");
82  }
83  return;
84  }
85 
86  plot.buf = calloc(512+1,1);
87  if(plot.buf == NULL)
88  printer_close();
89  plot.size = 512;
90 }
91 
92 
97 
99 {
100  plot.error = 0;
101  plot.count = 0;
102  plot.ind = 0;
103  plot.fp = NULL;
104  plot.buf = NULL;
105 }
106 
107 
119 {
120  if( receive_plot_flush() < 0 )
121  plot.error = 1;
122 
124  {
125  if(plot.error)
126  printf("ERROR durring write\n");
127  }
128 
129  if(plot.fp)
130  {
131  fclose(plot.fp);
133  printf("\nDONE: %08ld\n",plot.count);
134  }
135 
136  if(plot.buf)
137  safefree(plot.buf);
138  printer_init();
139 }
140 
141 
150 
152 {
153  int ret;
154  int fno;
155 
156  if(plot.fp == NULL || plot.ind == 0)
157  return(0);
158 
159  ret = fwrite(plot.buf, 1, plot.ind , plot.fp);
160  if(ret != plot.ind)
161  {
163  {
164  perror("receive_plot_flush");
165  printf("write failed: wanted %d, got:%d\n", plot.ind, ret);
166  }
167  return(-1);
168  }
169 
170  fno = fileno( plot.fp );
171  if(fno < 0)
172  return(-1);
174  syncfs( fno );
175  return (ret);
176 }
177 
178 
186 void printer_buffer( uint16_t val )
187 {
188 
189  uint16_t ch;
190 
192  {
193  if( ( plot.count & 255L ) == 0)
194  printf("%08ld\r",plot.count);
195  }
196 
197  ch = val & 0xff;
198  if(val & (0xff00 & ~REN_FLAG))
199  {
200  if( receive_plot_flush() )
201  plot.error = 1;
202 
203 //fprintf(plot.fp,"%s\n", ptr);
204 //plot.count += strlen(ptr);
205  }
206  else
207  {
208  ch = val & 0xff;
209  plot.buf[plot.ind++] = ch;
210  plot.count++;
211 
212  if(plot.ind >= plot.size)
213  {
214  if( receive_plot_flush() < 0 )
215  plot.error = 1;
216  plot.ind = 0;
217  }
218  }
219 }
220 
221 
226 
227 int PRINTER_COMMANDS(uint8_t ch)
228 {
229 
230 // We could, for example, use secondaries to set file names, etc
231 // We don not use them yet
233  {
234 #if SDEBUG
236  printf("[SC PRINTER Listen: %02XH]\n", 0xff & ch );
237 #endif
238  return(0);
239  }
240 
242  {
243 #if SDEBUG
245  printf("[SC PRINTER Talk: %02XH]\n", 0xff & ch );
246 #endif
247  return(0);
248  }
249  return(0);
250 }
printer_open
void printer_open(char *name)
Open a file to receive plot data using POSIX functions.
Definition: printer.c:43
fopen
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
Definition: posix.c:801
sprintf
#define sprintf(s, format, args...)
Definition: user_config.h:73
printf
MEMSPACE int printf(const char *format,...)
tm::tm_min
int tm_min
Definition: time.h:43
debuglevel
int debuglevel
Debug flag - used to log GPIB and emulator messages.
Definition: gpib_task.c:33
listening
uint8_t listening
gpib listen address
Definition: gpib.c:90
PRINTERStateType::fp
FILE * fp
Definition: drives.h:90
PRINTER_COMMANDS
int PRINTER_COMMANDS(uint8_t ch)
GPIB Secondary Command Printer commands.
Definition: printer.c:227
plot_str
uint8_t plot_str[]
Plotter GPIB test vector.
Definition: printer.c:33
gmtime
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
Definition: time.c:471
tm::tm_sec
int tm_sec
Definition: time.h:42
fwrite
MEMSPACE size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX write nmemb elements from buf, size bytes each, to the stream fd.
Definition: posix.c:890
safefree
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
Definition: ram.c:158
tm::tm_mon
int tm_mon
Definition: time.h:46
tm::tm_mday
int tm_mday
Definition: time.h:45
printer_close
void printer_close()
Close current plot file and reset states.
Definition: printer.c:118
REN_FLAG
#define REN_FLAG
Definition: gpib.h:36
PRINTERStateType::ind
int16_t ind
Definition: drives.h:87
tm::tm_hour
int tm_hour
Definition: time.h:44
defines.h
GPIB, AMIGO, SS80 and device defines.
timespec::tv_sec
time_t tv_sec
Definition: time.h:87
NULL
#define NULL
Definition: user_config.h:85
printer_init
void printer_init()
Initialize plotter structures and state.
Definition: printer.c:98
PRINTER_is_MTA
int PRINTER_is_MTA(int address)
Check if PRINTER talking address.
Definition: gpib_task.c:166
plot
PRINTERStateType plot
Plotter file data structure used for saving plot data.
Definition: printer.c:30
GPIB_ERR
#define GPIB_ERR
Definition: debug.h:4
gpib_task.h
High level GPIB command handler for HP85 disk emulator project for AVR.
syncfs
MEMSPACE int syncfs(int fd)
POSIX Sync pending file changes and metadata for specified fileno.
Definition: posix.c:1119
printer.h
HPGL printer capture code for HP85 disk emulator project for AVR.
tm_mon_to_ascii
MEMSPACE char * tm_mon_to_ascii(int i)
Get string Short name of Month from month number.
Definition: time.c:114
GPIB_DEVICE_STATE_MESSAGES
#define GPIB_DEVICE_STATE_MESSAGES
Definition: debug.h:9
perror
MEMSPACE void perror(const char *s)
POSIX perror() - convert POSIX errno to text with user message.
Definition: posix.c:1850
clock_gettime
MEMSPACE int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
Generic clock_gettime() function WITHOUT high resolution.
Definition: timer.c:386
printer_buffer
void printer_buffer(uint16_t val)
Buffer Plotter data and flush when buffer is full.
Definition: printer.c:186
fclose
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
Definition: posix.c:1261
delay.h
Extended delay routines for AVR.
drives.h
PRINTERStateType
Plotter file data structure definition used for saving plot data.
Definition: drives.h:84
fileno
MEMSPACE int fileno(FILE *stream)
Convert POSIX stream pointer to POSIX fileno (index of __iob[])
Definition: posix.c:741
calloc
#define calloc(n, s)
Definition: user_config.h:129
talking
uint8_t talking
gpib talk address
Definition: gpib.c:85
PRINTERStateType::size
int16_t size
Definition: drives.h:88
tm
POSIX struct tm.
Definition: time.h:40
tm::tm_year
int tm_year
Definition: time.h:47
gpib.h
GPIB emulator for HP85 disk emulator project for AVR.
time_t
uint32_t time_t
type of EPOCH result.
Definition: time.h:34
PRINTERStateType::buf
char * buf
Definition: drives.h:91
timespec
POSIX timespec.
Definition: time.h:85
PRINTERStateType::error
uint8_t error
Definition: drives.h:89
gpib_hal.h
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
posix.h
POSIX wrapper for FatFS.
PRINTERStateType::count
uint32_t count
Definition: drives.h:86
receive_plot_flush
int receive_plot_flush()
Write Plotter data and flush.
Definition: printer.c:151
PRINTER_is_MLA
int PRINTER_is_MLA(int address)
Check if PRINTER listening address.
Definition: gpib_task.c:153
debug.h