HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gpib_task.c
Go to the documentation of this file.
1 
15 #include "user_config.h"
16 
17 #include "defines.h"
18 #include "drives.h"
19 #include "gpib_hal.h"
20 #include "gpib.h"
21 #include "gpib_task.h"
22 #include "amigo.h"
23 #include "ss80.h"
24 #include "vector.h"
25 #include "printer.h"
26 #include "debug.h"
27 
29 char cfgfile[] = "/hpdisk.cfg";
31 
33 int debuglevel = 1;
34 
37 
40 {
41  int errors;
42 
43  debuglevel = 0;
44 
45  errors = Read_Config(cfgfile);
46  if(errors > 0)
47  printf("%s had %d errors\n", cfgfile, errors);
48  if(errors < 0)
49  printf("%s open failure\n", cfgfile);
50 
53 
54  if(mmc_wp_status())
55  printf("Card is write protected\n");
56 }
57 
58 
63 void gpib_log( char *str )
64 {
65  if(gpib_log_fp != NULL )
66  fprintf(gpib_log_fp,"%s\n", str);
67 }
68 
69 
74 int SS80_is_MLA(int address)
75 {
76  int index = find_device(SS80_TYPE, address, BASE_MLA);
77  if(index == -1)
78  return(0);
79  return(set_active_device(index));
80 }
81 
82 
87 int SS80_is_MTA(int address)
88 {
89  int index = find_device(SS80_TYPE, address, BASE_MTA);
90  if(index == -1)
91  return(0);
92  return(set_active_device(index));
93 }
94 
95 
100 int SS80_is_MSA(int address)
101 {
102  int index = find_device(SS80_TYPE, address, BASE_MSA);
103  if(index == -1)
104  return(0);
105  return(set_active_device(index));
106 }
107 
108 
109 #ifdef AMIGO
110 int AMIGO_is_MLA(int address)
115 {
116  int index = find_device(AMIGO_TYPE, address, BASE_MLA);
117  if(index == -1)
118  return(0);
119  return(set_active_device(index));
120 }
121 
122 
127 int AMIGO_is_MTA(int address)
128 {
129  int index = find_device(AMIGO_TYPE, address, BASE_MTA);
130  if(index == -1)
131  return(0);
132  return(set_active_device(index));
133 }
134 
135 
140 int AMIGO_is_MSA(int address)
141 {
142  int index = find_device(AMIGO_TYPE, address, BASE_MSA);
143  if(index == -1)
144  return(0);
145  return(set_active_device(index));
146 }
147 #endif // #ifdef AMIGO
148 
153 int PRINTER_is_MLA(int address)
154 {
155  int index = find_device(PRINTER_TYPE, address, BASE_MLA);
156  if(index == -1)
157  return(0);
158  return(set_active_device(index));
159 }
160 
161 
166 int PRINTER_is_MTA(int address)
167 {
168  int index = find_device(PRINTER_TYPE, address, BASE_MTA);
169  if(index == -1)
170  return(0);
171  return(set_active_device(index));
172 }
173 
174 
179 int PRINTER_is_MSA(int address)
180 {
181  int index = find_device(PRINTER_TYPE, address, BASE_MSA);
182  if(index == -1)
183  return(0);
184  return(set_active_device(index));
185 }
186 
187 
199 
200 void gpib_trace_task( char *name , int detail)
201 {
202  int ch;
203 
204  if(name && *name)
205  {
206  name = skipspaces(name);
207  printf("Capturing GPIB BUS to:%s\n", name);
208  if(detail)
209  printf("FULL GPIB BUS handshake logging requested\n");
210  printf("Press ANY key to exit\n");
211 
212  gpib_log_fp = fopen(name,"wb");
213  if(gpib_log_fp == NULL)
214  {
215  perror("open failed");
216  printf("exiting...\n");
217  return;
218  }
219  }
220  else
221  {
223  }
224 
225  // gpib_state_init(); // Init PPR talking and listening states
226  // gpib_state_init is in gpib_init_devices()
228 
230  while(1) // Main loop, forever
231  {
232  if(uart_keyhit(0))
233  break;
234 
235  ch = gpib_read_byte(detail);
236  if(!detail)
237  gpib_decode(ch);
238  }
239 
240  printf("Done\n");
241  if(gpib_log_fp)
242  {
244  printf("Capturing Closed\n");
246  }
247 }
248 
249 
276 
277 uint16_t gpib_error_test(uint16_t val)
278 {
279 
280  if(val & ERROR_MASK || uart_keyhit(0) || mmc_ins_status() != 1 )
281  {
282  val &= ERROR_MASK;
283 
286  {
288  if(val & IFC_FLAG)
289  printf("<IFC>\n");
290  }
291 
293  {
294  if(val & TIMEOUT_FLAG)
295  printf("<TIMEOUT>\n");
296  if(val & BUS_ERROR_FLAG)
297  printf("<BUS>\n");
298  }
299 
300  if(uart_keyhit(0))
301  printf("<INTERRUPT>\n");
302 
303  if( mmc_ins_status() != 1 )
304  printf("<MEDIA MISSING>\n");
305 
306  if(val & IFC_FLAG)
307  {
309  }
310 
311  if(uart_keyhit(0))
312  {
314  return(ABORT_FLAG);
315  }
316 
319  if( mmc_ins_status() != 1 )
320  {
321  return(ABORT_FLAG);
322  }
323 
324 // Wait for IFC free
325  if(val & IFC_FLAG )
326  {
327  while(GPIB_IO_RD(IFC) == 0)
328  ;
329  }
330  return(val);
331  }
332  return(0);
333 }
334 
335 
341 {
342  gpib_bus_init(); // Not busy - we have to free all pins on the BUS
343 
344 // Init PPR talking and listening states
345 // Enable this 14 April 2020 - testing MIke Gore
346  gpib_state_init();
347 
348  SS80_init(); // SS80 state init
349 
350 #ifdef AMIGO
351  amigo_init(); // AMIGO state init
352 #endif
353 
354  printer_close(); // Close any open fprinter files
355 }
356 
357 
370 
371 uint16_t GPIB_COMMANDS(uint16_t val, uint8_t unread)
372 {
373  uint16_t status;
374 
376  if(talking != UNT)
377  {
378 
379 #ifdef AMIGO
380  if ( AMIGO_is_MLA(listening) )
381  {
382  if(unread)
383  gpib_unread(val);
384 // secondary was previously set
385  status = AMIGO_COMMANDS(secondary);
386  secondary = 0;
387  return(status);
388  }
389 #endif // ifdef AMIGO
390 
391  if ( SS80_is_MLA(listening) )
392  {
393  if(unread)
394  gpib_unread(val);
395 // secondary was previously set
396  status = SS80_COMMANDS(secondary);
397  secondary = 0;
398  return(status);
399  }
400 
401  if ( PRINTER_is_MLA(listening) )
402  {
403  if(unread)
404  gpib_unread(val);
405  status = PRINTER_COMMANDS(secondary);
406  secondary = 0;
407  return(status);
408  }
409  }
410 
412  if(listening != UNL)
413  {
414 #ifdef AMIGO
415  if ( AMIGO_is_MTA(talking) )
416  {
417  if(unread)
418  gpib_unread(val);
419  status = AMIGO_COMMANDS(secondary);
420  secondary = 0;
421  return(status);
422  }
423 #endif
424 
425  if ( SS80_is_MTA(talking) )
426  {
427  if(unread)
428  gpib_unread(val);
429  status = SS80_COMMANDS(secondary);
430  secondary = 0;
431  return(status);
432  }
433 
434  if ( PRINTER_is_MTA(talking) )
435  {
436  if(unread)
437  gpib_unread(val);
438  status = PRINTER_COMMANDS(secondary);
439  secondary = 0;
440  return(status);
441  }
442  }
443  return(0);
444 }
445 
446 
455 
456 void gpib_task(void)
457 {
458  uint16_t val;
459  uint8_t ch;
460  uint16_t status;
461 
462  gpib_init_devices(); // Init devices
463  // gpib_state_init() is now done in gpib_init_devices
464  // gpib_state_init(); // Init PPR talking and listening states
465 
466  gpib_log_fp = NULL;
467 
468  while(1)
469  {
470 
471 
472  val = gpib_read_byte(NO_TRACE);
473 
474 #if SDEBUG
476  gpib_decode(val);
477 #endif
478  status = gpib_error_test(val);
479  if(status & ABORT_FLAG)
480  {
481  return;
482  }
483  else if(status & MEDIA_FLAG)
484  {
485  return;
486  }
487  else if(status)
488  {
489  continue;
490  }
492  if(val & ATN_FLAG)
493  {
494  ch = val & CMD_MASK;
495  if(ch <= 0x1f)
496  {
497  GPIB(ch);
498  continue;
499  }
501  if(ch >= 0x20 && ch <= 0x3f)
502  {
503  GPIB_LISTEN(ch);
504  continue;
505  }
507  if(ch >= 0x40 && ch <= 0x5f)
508  {
509  GPIB_TALK(ch);
510  continue;
511  }
512 
515 
516  if( listening && lastcmd == UNT)
517  {
518  secondary = 0;
520  continue;
521  }
522 
525  secondary = ch;
527  status = GPIB_COMMANDS(secondary,0);
528  status = gpib_error_test(status);
529  if(status & ( ABORT_FLAG | MEDIA_FLAG ))
530  {
531  return;
532  }
533  if(status)
534  {
535  continue;
536  }
537  continue;
538 
539  } // GPIB ATN
540 
542  else // GPIB Data
543  {
544  if ( PRINTER_is_MLA(listening) )
545  {
546  printer_buffer( 0xff & val );
547  continue;
548  }
549 
550  if(!secondary)
551  continue;
552 
553 // ONLY secondar commands at this point
555  status = GPIB_COMMANDS(val,1);
556  status = gpib_error_test(status);
557 
558  if(status & ( ABORT_FLAG | MEDIA_FLAG ))
559  {
560  return;
561  }
562  if(status)
563  {
564  continue;
565  }
566  continue;
567  }
568  } // while(1)
569  return;
570 }
571 
572 
585 
586 int Send_Identify(uint8_t ch, uint16_t ID)
587 {
588  uint16_t status = EOI_FLAG;
589  uint8_t tmp[2];
590 
591  V2B_MSB(tmp,0,2,ID);
592  if(gpib_write_str(tmp,2, &status) != 2)
593  {
595  printf("[IDENT Unit:%02XH=%04XH FAILED]\n",
596  (int)ch,(int)ID);
597  return(status & ERROR_MASK);
598  }
599 #if SDEBUG
601  printf("[IDENT Unit:%02XH=%04XH]\n", (int)ch,(int)ID);
602 #endif
603  return (status & ERROR_MASK);
604 }
605 
606 
618 
619 int GPIB(uint8_t ch)
620 {
623  if(ch == PPC)
624  {
626  printf("[PPC unsupported TODO]\n");
627  spoll = 0;
628  return 0;
629  }
632  if(ch == PPU)
633  {
635  printf("[PPU unsupported TODO]\n");
636  spoll = 0;
637  return 0;
638  }
639 
641 #if defined(SPOLL)
642  if(ch == SPE)
644  {
645 #if SDEBUG
647  printf("[SPE]\n");
648 #endif
649  spoll = 1;
650  if(SS80_is_MTA(talking))
651  {
652  return( SS80_Report() );
653  }
654  return 0;
655  }
656 
658  if(ch == SPD)
659  {
660 #if SDEBUG
662  printf("[SPD]\n");
663 #endif
664  spoll = 0;
665  return 0;
666  }
667 #endif // #if defined(SPOLL)
668 
670  if(ch == SDC )
671  {
672 #if SDEBUG
674  printf("[SDC]\n");
675 #endif
677  {
680 #if SDEBUG
682  printf("[SDC SS80]\n");
683 #endif
685  }
686 
687 #ifdef AMIGO
689  {
691 #if SDEBUG
693  printf("[SDC AMIGO]\n");
694 #endif
695  return( amigo_cmd_clear() );
696  }
697 #endif // #ifdef AMIGO
698 
700  return( 0 );
701  }
702 
704  if(ch == DCL )
705  {
706 #if SDEBUG
708  printf("[DCL]\n");
709 #endif
711 
712 #ifdef AMIGO
713  amigo_cmd_clear();
714 #endif
715 
717  printer_close();
718  return( 0 );
719  }
720 
722  printf("[GPIB (%02XH) not defined TODO]\n", 0xff & ch);
723  return(0);
724 }
725 
726 
733 
734 int GPIB_LISTEN(uint8_t ch)
735 {
737  listening = ch;
738 
739  listen_cleanup();
740 
744  if(ch == UNL)
745  {
746  listening = 0;
747 
748 #if SDEBUG
750  {
751  printf("[UNL]\n");
753  if(lastcmd == UNT)
754  printf("\n");
755  }
756 #endif
757  return(0);
758  }
759 
760 #ifdef AMIGO
761  if(AMIGO_is_MLA(ch))
762  {
763 #if SDEBUG
765  printf("[LA %02XH AMIGO]\n", 0xff & ch);
766 #endif
767  return(0);
768  }
769 #endif // #ifdef AMIGO
770 
771  if(SS80_is_MLA(ch))
772  {
773 #if SDEBUG
775  printf("[LA %02XH SS80]\n", 0xff & ch);
776 #endif
777  return(0);
778  }
779 
780  if(PRINTER_is_MLA(ch))
781  {
782 #if SDEBUG
784  printf("[LA %02XH PRINTER]\n", 0xff & ch);
785 #endif
786  if(talking != UNT)
787  {
789 // FIXME use printer structure to permit multiple printers
791  }
792  return(0);
793  }
794 #if SDEBUG
796  printf("[LA %02XH]\n", 0xff & ch);
797 #endif
798  return(0);
799 } // Listen Primary Address group
800 
801 
808 
809 int GPIB_TALK(uint8_t ch)
810 {
811 
816  talking = ch;
817 
818  talk_cleanup();
819 
821  if(ch == UNT)
822  {
823 //FIXME talking = 0 ????
824 #if SDEBUG
826  printf("[UNT]\n");
827 #endif
828  return(0);
829  }
830 
831  if(SS80_is_MTA(ch))
832  {
833 #if SDEBUG
835  printf("[TA %02XH SS80]\n", 0xff & ch);
836 #endif
837 
838  if (spoll)
839  {
840  SS80_Report();
841  }
842  return(0);
843  }
844 
845 #ifdef AMIGO
846  if(AMIGO_is_MTA(ch))
847  {
848 #if SDEBUG
850  printf("[TA %02XH AMIGO]\n", 0xff & ch);
851 #endif
852  return(0);
853  }
854 #endif // #ifdef AMIGO
855 
856  if(PRINTER_is_MTA(ch))
857  {
858 #if SDEBUG
860  printf("[TA %02XH PRINTER]\n", 0xff & ch);
861 #endif
862  return(0);
863  }
864 
866  {
868  printf("[PRINTER OPEN]\n");
870  return(0);
871  }
872 
873 #if SDEBUG
875  printf("[TA %02XH]\n", 0xff & ch);
876 #endif
877  return(0);
878 } // Talk Address primary address group
879 
880 
888 int GPIB_SECONDARY_ADDRESS(uint8_t ch)
889 {
892 
898  if(SS80_is_MSA(ch) )
899  {
900 #if SDEBUG
902  printf("[SA %02XH SS80]\n", 0xff & ch);
903 #endif
906  return(Send_Identify( ch, SS80p->CONFIG.ID) );
907 
908  }
909 
910 #ifdef AMIGO
911  if(AMIGO_is_MSA(ch) )
912  {
915 #if SDEBUG
917  printf("[SA %02XH AMIGO]\n", 0xff & ch);
918 #endif
919  gpib_disable_PPR(AMIGOp->HEADER.PPR);
921  return( Send_Identify( ch, AMIGOp->CONFIG.ID) );
922  }
923 #endif // #ifdef AMIGO
924 
925 #if SDEBUG
927  printf("[SA %02XH, listen:%02XH, talk:%02XH]\n",
928  0xff & ch, 0xff & listening, 0xff & talking);
929 #endif
930  return(0);
931 }
932 
933 
941 {
942  if(listening_last)
943  {
945  if(index == -1)
946  return;
947 
948 //We should not set the active device globally
949 //FIXME if we have to then printer close should temprarily do so
951  printf("[PRINTER close]\n");
952  printer_close();
953  }
954 }
955 
956 
964 
966 {
967 
968 }
969 
970 
978 
979 void DumpData(unsigned char *ptr,int length)
980 {
981  int i,j;
982  char ch;
983  printf("[Dump: %d]\n",length);
984  for(j=0;j<80&&(j*16<length);j++)
985  {
986  printf("\n");
987  for(i=0;i<16 && (i+j*16<length);i++)
988  {
989  ch = *(ptr+i+j*16);
990  printf(" %02X",ch&0xFF);
991  }
992  printf(" | ");
993  for(i=0;i<16 && (i+j*16<length);i++)
994  {
995  if(*(ptr+i+j*16)>' ') printf("%c",(*(ptr+i+j*16))&0xFF);
996  else printf(".");
997  }
998  }
999  printf("\n");
1000 }
CMD_MASK
#define CMD_MASK
Definition: gpib.h:53
NO_TRACE
#define NO_TRACE
Definition: gpib.h:66
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
uart_keyhit
int uart_keyhit(uint8_t uart)
Do we have receive characters waiting ?.
Definition: rs232.c:394
BASE_MTA
#define BASE_MTA
Definition: defines.h:76
SS80s
SS80StateType * SS80s
Definition: drives.c:39
BUS_ERROR_FLAG
#define BUS_ERROR_FLAG
Definition: gpib.h:42
printf
MEMSPACE int printf(const char *format,...)
ABORT_FLAG
#define ABORT_FLAG
printer do not use parallel poll
Definition: defines.h:52
listen_cleanup
void listen_cleanup()
Called when the listen address changes.
Definition: gpib_task.c:940
GPIB_SECONDARY_ADDRESS
int GPIB_SECONDARY_ADDRESS(uint8_t ch)
Process all GPIB Secondary Addresses.
Definition: gpib_task.c:888
FIL
Definition: ff.h:205
listening
uint8_t listening
gpib listen address
Definition: gpib.c:90
HeaderType::PPR
uint8_t PPR
Definition: drives.h:43
SPD
#define SPD
Definition: amigo.h:33
BASE_MSA
#define BASE_MSA
Definition: defines.h:77
AMIGO_COMMANDS
int AMIGO_COMMANDS(uint8_t ch)
GPIB_COMMANDS
uint16_t GPIB_COMMANDS(uint16_t val, uint8_t unread)
Process all GPIB Secondary Commands.
Definition: gpib_task.c:371
PRINTER_TYPE
@ PRINTER_TYPE
Definition: drives.h:252
gpib_disable_PPR
void gpib_disable_PPR(int bit)
Disable PPR (Parallel Poll Response) for a device.
Definition: gpib.c:436
gpib_trace_task
void gpib_trace_task(char *name, int detail)
Trace GPIB activity passively - saving to a log file.
Definition: gpib_task.c:200
fp_file
FIL fp_file
Definition: gpib_task.c:30
PRINTER_COMMANDS
int PRINTER_COMMANDS(uint8_t ch)
GPIB Secondary Command Printer commands.
Definition: printer.c:227
gpib_decode_header
void gpib_decode_header(FILE *fo)
Displays help for gpib_decode() function.
Definition: gpib.c:1082
ss80.h
SS80 disk emulator for HP85 disk emulator project for AVR.
fprintf
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
Definition: posix.c:2533
GPIB_PPR
#define GPIB_PPR
Definition: debug.h:5
AMIGO_is_MLA
int AMIGO_is_MLA(int address)
GPIB_IO_RD
#define GPIB_IO_RD(a)
changes pin mode to read, then read
Definition: gpib_hal.h:115
amigo.h
AMIGO disk emulator for HP85 disk emulator project for AVR.
gpib_task
void gpib_task(void)
Top most main GPIB device emulator task. This is main() for GPIB state machine loop All tasks are dis...
Definition: gpib_task.c:456
UNL
#define UNL
Definition: amigo.h:27
GPIB_BUS_OR_CMD_BYTE_MESSAGES
#define GPIB_BUS_OR_CMD_BYTE_MESSAGES
Definition: debug.h:6
SS80_Report
int SS80_Report(void)
send QSTAT
Definition: ss80.c:1641
MEDIA_FLAG
#define MEDIA_FLAG
Definition: defines.h:53
IFC_FLAG
#define IFC_FLAG
Definition: gpib.h:37
AMIGO_is_MSA
int AMIGO_is_MSA(int address)
printer_close
void printer_close()
Close current plot file and reset states.
Definition: printer.c:118
GPIB_TALK
int GPIB_TALK(uint8_t ch)
Process all GPIB Talk commands.
Definition: gpib_task.c:809
SS80DiskType::HEADER
HeaderType HEADER
Definition: drives.h:196
ERROR_MASK
#define ERROR_MASK
Definition: gpib.h:49
mmc_wp_status
MEMSPACE int mmc_wp_status()
MMC Card Write Protect status.
Definition: mmc_hal.c:344
amigo_cmd_clear
int amigo_cmd_clear(void)
defines.h
GPIB, AMIGO, SS80 and device defines.
gpib_error_test
uint16_t gpib_error_test(uint16_t val)
Check for GPIB errors and timeouts.
Definition: gpib_task.c:277
set_active_device
int8_t set_active_device(int8_t index)
Set the Active disk or device pointers Since we can be called multiple times per single GPIB state we...
Definition: drives.c:1093
DCL
#define DCL
Definition: amigo.h:30
amigo_init
void amigo_init(void)
AMIGO_is_MTA
int AMIGO_is_MTA(int address)
NULL
#define NULL
Definition: user_config.h:85
AMIGO_TYPE
@ AMIGO_TYPE
Definition: drives.h:249
SS80StateType::unitNO
BYTE unitNO
SS80 Unit.
Definition: drives.h:214
PRINTER_is_MTA
int PRINTER_is_MTA(int address)
Check if PRINTER talking address.
Definition: gpib_task.c:166
gpib_log
void gpib_log(char *str)
Log GPIB transactions.
Definition: gpib_task.c:63
talking_last
uint8_t talking_last
gpib last talk address
Definition: gpib.c:87
GPIB_LISTEN
int GPIB_LISTEN(uint8_t ch)
Process all GPIB Listen commands.
Definition: gpib_task.c:734
GPIB_ERR
#define GPIB_ERR
Definition: debug.h:4
GPIB_TODO
#define GPIB_TODO
Definition: debug.h:8
__file
FILE type structure.
Definition: posix.h:158
gpib_task.h
High level GPIB command handler for HP85 disk emulator project for AVR.
SS80_init
void SS80_init(void)
SS80 nitialize all devices Initialize ALL SS80 devives.
Definition: ss80.c:275
printer.h
HPGL printer capture code for HP85 disk emulator project for AVR.
SS80_is_MSA
int SS80_is_MSA(int address)
Check if SS80 secondary address.
Definition: gpib_task.c:100
talk_cleanup
void talk_cleanup()
Called when the GPIB talk address changes.
Definition: gpib_task.c:965
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
gpib_decode
void gpib_decode(uint16_t ch)
Calls gpib_decode_str() and dosplays the result.
Definition: gpib.c:1266
printer_buffer
void printer_buffer(uint16_t val)
Buffer Plotter data and flush when buffer is full.
Definition: printer.c:186
gpib_init_devices
void gpib_init_devices(void)
Initialize ALL emulated devices SS80, AMIGO and printer.
Definition: gpib_task.c:340
SS80_is_MTA
int SS80_is_MTA(int address)
Check if SS80 talking address.
Definition: gpib_task.c:87
DumpData
void DumpData(unsigned char *ptr, int length)
HEX and ASCII dump of string in human-readable format.
Definition: gpib_task.c:979
stdout
#define stdout
Definition: posix.h:274
listening_last
uint8_t listening_last
gpib last listen address
Definition: gpib.c:92
fclose
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
Definition: posix.c:1261
gpib_file_init
void gpib_file_init()
Read Configuration File.
Definition: gpib_task.c:39
lastcmd
uint16_t lastcmd
gpib current and last command
Definition: gpib.c:97
EOI_FLAG
#define EOI_FLAG
bus flags
Definition: gpib.h:33
BASE_MLA
#define BASE_MLA
=========================================================
Definition: defines.h:75
SS80_Selected_Device_Clear
int SS80_Selected_Device_Clear(int u)
Selected Device Clear.
Definition: ss80.c:1811
cfgfile
char cfgfile[]
Config file name.
Definition: gpib_task.c:29
gpib_write_str
int gpib_write_str(uint8_t *buf, int size, uint16_t *status)
Send string to GPIB BUS - controlled by status flags.
Definition: gpib.c:1396
PRINTER_is_MSA
int PRINTER_is_MSA(int address)
Check if PRINTER secondary address.
Definition: gpib_task.c:179
gpib_log_fp
FILE * gpib_log_fp
GPIB log file handel.
Definition: gpib_task.c:36
Send_Identify
int Send_Identify(uint8_t ch, uint16_t ID)
Send drive identify- 2 bytes.
Definition: gpib_task.c:586
gpib_read_byte
uint16_t gpib_read_byte(int trace)
read 1 byte and control line status from GPIB BUS
Definition: gpib.c:875
secondary
uint8_t secondary
gpib secondary
Definition: gpib.c:100
mmc_ins_status
MEMSPACE int mmc_ins_status()
MMC Card Inserted status.
Definition: mmc_hal.c:328
GPIB
int GPIB(uint8_t ch)
Main GPIB command handler Commands 0x00 .. 0x1f.
Definition: gpib_task.c:619
drives.h
SS80DiskType::CONFIG
ConfigType CONFIG
Definition: drives.h:197
UNT
#define UNT
Definition: amigo.h:28
TIMEOUT_FLAG
#define TIMEOUT_FLAG
Definition: gpib.h:41
vector.h
SDC
#define SDC
Definition: amigo.h:35
PPU
#define PPU
Definition: amigo.h:31
ATN_FLAG
#define ATN_FLAG
Definition: gpib.h:35
ConfigType::ID
uint16_t ID
Definition: drives.h:52
GPIB_TOP_LEVEL_BUS_DECODE
#define GPIB_TOP_LEVEL_BUS_DECODE
Definition: debug.h:7
talking
uint8_t talking
gpib talk address
Definition: gpib.c:85
SS80_TYPE
@ SS80_TYPE
Definition: drives.h:251
SS80_is_MLA
int SS80_is_MLA(int address)
Check if SS80 listening address.
Definition: gpib_task.c:74
set_Config_Defaults
void set_Config_Defaults()
Set Defaults for any missing disk or printer devices These are only used if the Config file omits the...
Definition: drives.c:1427
SS80_Universal_Device_Clear
int SS80_Universal_Device_Clear(void)
Universal Device CLear.
Definition: ss80.c:1793
Read_Config
int Read_Config(char *name)
Read and parse a config file using POSIX functions Set all drive parameters and debuglevel.
Definition: drives.c:336
gpib.h
GPIB emulator for HP85 disk emulator project for AVR.
find_device
int8_t find_device(int type, int address, int base)
Find a device with matching type AND address.
Definition: drives.c:1063
SS80p
SS80DiskType * SS80p
Active SS80 Device.
Definition: drives.c:38
gpib_unread
uint16_t gpib_unread(uint16_t ch)
GPIB ungets one character and all status states.
Definition: gpib.c:544
skipspaces
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
Definition: parsing.c:70
debuglevel
int debuglevel
Debug flag - used to log GPIB and emulator messages.
Definition: gpib_task.c:33
SS80_COMMANDS
int SS80_COMMANDS(uint8_t ch)
SS80 COMMANDS States.
Definition: ss80.c:1929
gpib_hal.h
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
gpib_bus_init
void gpib_bus_init()
Initialize/Release GPIB Bus control lines Used for Power ON, Reset or IFC LOW reset conditions.
Definition: gpib.c:229
PPC
#define PPC
Definition: amigo.h:36
V2B_MSB
void V2B_MSB(uint8_t *B, int index, int size, uint32_t val)
Convert Value into byte array bytes are MSB ... LSB order.
Definition: vector.c:22
SPE
#define SPE
Definition: amigo.h:32
IFC
#define IFC
Definition: gpib_hal.h:64
PRINTER_is_MLA
int PRINTER_is_MLA(int address)
Check if PRINTER listening address.
Definition: gpib_task.c:153
spoll
uint8_t spoll
gpib serial poll status
Definition: gpib.c:95
debug.h
gpib_state_init
void gpib_state_init(void)
Reset GPIB states and related variables.
Definition: gpib.c:389