HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gpib.c
Go to the documentation of this file.
1 
18 #include "user_config.h"
19 #include "hal.h"
20 #include "gpib_hal.h"
21 
22 #include "defines.h"
23 #include "gpib.h"
24 #include "gpib_task.h"
25 #include "amigo.h"
26 #include "ss80.h"
27 
28 #include "fatfs.h"
29 #include "posix.h"
30 #include "debug.h"
31 
72 
74 extern void gpib_user_task();
75 
78 
80 uint8_t gpib_unread_f = 0; // saved character flag
82 uint16_t gpib_unread_data; // saved character and status
83 
85 uint8_t talking;
87 uint8_t talking_last;
88 
90 uint8_t listening;
93 
95 uint8_t spoll;
97 uint16_t lastcmd,current;
98 
100 uint8_t secondary;
101 
103 typedef struct
104 {
105  int cmd;
106  char *name;
107 } gpib_token_t;
108 
110 {
111  {0x01,"GTL" },
112  {0x04,"SDC" },
113  {0x05,"PPC" },
114  {0x08,"GET" },
115  {0x09,"TCT" },
116  {0x11,"LLO" },
117  {0x14,"DCL" },
118  {0x15,"PPU" },
119  {0x18,"SPE" },
120  {0x19,"SPD" },
121  {0x3F,"UNL" },
122  {0x5F,"UNT" },
123  {-1,NULL }
124 };
125 
128 
134 {
135 
136 #ifdef SYSTEM_ELAPSED_TIMER
138 #else
139  cli();
140  gpib_timer.elapsed = 0;
141  sei();
142 #endif
143 }
144 
145 
149 
150 void gpib_timer_reset( void )
151 {
152  cli();
153  gpib_timer.elapsed = 0;
156  sei();
157 }
158 
159 
164 void gpib_timer_elapsed_end( char *msg)
165 {
166 #ifdef SYSTEM_ELAPSED_TIMER
167  clock_elapsed_end( msg );
168 #else
169  uint32_t val;
170  uint32_t seconds;
171  uint32_t useconds;
172 
173  cli();
174  val = gpib_timer.elapsed;
175  sei();
176 
177  seconds = val * GPIB_TASK_TIC_US / 1000000L;
178  useconds = (val * GPIB_TASK_TIC_US ) % 1000000L;
179 
180  printf("[%s: %ld.%06ld]\n", msg, seconds,useconds);
181 #endif
182 }
183 
184 
191 {
192  cli();
193 #ifndef SYSTEM_ELAPSED_TIMER
195 #endif
198  else
200  sei();
201 }
202 
203 
207 void gpib_timeout_set(uint32_t time)
208 {
209 // printf("\n%8ld\n", (long)time);
210  cli();
213  sei();
214 }
215 
216 
221 {
222 // printf("%8ld,%d\r", (long)gpib_timer.down_counter, (int)gpib_timer.down_counter_done);
224 }
225 
230 {
231 
232  uint8_t sreg = SREG;
233  cli();
235  gpib_unread_f = 0;
236 
237  GPIB_BUS_IN(); // CPU data direction IN
238  GPIB_BUS_LATCH_WR(0xff); // Float them HIGH
239 
240  // ============
241  // Handshake lines
242  // TX, TE = 1, DAV = T, NDAC = R, NRFD = R
243  // RX, TE = 0, DAV = R, NDAC = T, NRFD = T
244  GPIB_PIN_FLOAT_UP(DAV); // DAV FLOAT PULLUP
245  GPIB_PIN_FLOAT_UP(NRFD); // SRQ FLOAT PULLUP
246  GPIB_PIN_FLOAT_UP(NDAC); // NDAC FLOAT PULLUP
247  // ============
248 
249  // ============
250  // DC = 1
251  // Always Inputs
252  // We will NEVER write to ATN,IFC,REN,SRQ after BUS init
253  GPIB_PIN_FLOAT_UP(ATN); // ATN FLOAT PULLUP
254  GPIB_PIN_FLOAT_UP(IFC); // IFC FLOAT PULLUP
255  GPIB_PIN_FLOAT_UP(REN); // REN FLOAT PULLUP
256  // Always OC output
257  GPIB_PIN_FLOAT_UP(SRQ); // SRQ FLOAT PULLUP
258  // ============
259 
260  // ============
261  // EOI
262  // TX if TE = 1, ATN = 1
263  // RX if TE = 1, ATN = 0
264  // RX if TE = 0, ATN = 1
265  GPIB_PIN_FLOAT_UP(EOI); // EOI FLOAT PULLUP
266  // ============
267 
268 #if BOARD == 2
269  // ALWAYS in device mode
270  // SC = 0, DC = 1
271  GPIB_IO_LOW(SC); // REN IN, IFC IN
272  GPIB_IO_HI(DC); // ATN IN, EOI IN, SRQ OUT OC
273  // Always OC mode in case parallel poll happens
274  // PE= 0, OC BUS transciever mode
275  GPIB_IO_LOW(PE); // Enable OC GPIB BUS transceivers
276  // TE is the ONLY SN75160B/SN75162B control bit we use in device mode
277  // RX = 0, TX = 1
278  GPIB_IO_LOW(TE); // BUS IN, DAV IN, NDAC OUT OC, NRFD OUT OC
279 #endif
280 
281  GPIB_BUS_SETTLE(); // Let Data BUS settle
282 
283  SREG = sreg;
284 
285 #if SDEBUG
287  printf("[GPIB BUS_INIT]\n");
288 #endif
289 
290 }
291 
292 
293 
301 // This function sets the following states
302 // GPIB_BUS_LATCH_WR(0xff); // float BUS
303 // GPIB_IO_LOW(TE); // BUS IN
304 // BUS IN, DAV IN, NDAC OUT, NRFD OUT
305 // ATN IN, EOI IN, SRQ OUT OC
306 // ============
307 void gpib_rx_init(uint8_t busy)
308 {
309  uint8_t sreg = SREG;
310  cli();
311  GPIB_BUS_IN(); // CPU data direction IN
312  GPIB_BUS_LATCH_WR(0xff); // Float them HIGH
313 
314  // RX, TE = 0, DAV = R, NDAC = T, NRFD = T
315  GPIB_PIN_FLOAT_UP(DAV); // DAV FLOAT PULLUP
316 
317  GPIB_PIN_FLOAT_UP(EOI); // EOI FLOAT PULLUIP
318 
319 //FIXME
320 // If ATN = 0, then set NRFD = 0, NDAC = 0
321 // (SPecification says within 200 nanoseconds)
322 // To permit three-wire handshake
323 
324  if(GPIB_PIN_TST(ATN) == 0 || busy)
325  {
326 #if BOARD == 2
327  GPIB_IO_LOW(TE); // BUS IN, DAV IN, NDAC OUT, NRFD OUT
328 #endif
329  GPIB_IO_LOW(NDAC);
330  GPIB_IO_LOW(NRFD);
331 
332  }
333  if(!busy)
334  {
335  GPIB_PIN_FLOAT_UP(NRFD); // OC PULLUP
336  GPIB_PIN_FLOAT_UP(NDAC); // OC PULLUP
337 #if BOARD == 2
338  GPIB_IO_LOW(TE); // BUS IN, DAV IN, NDAC OUT, NRFD OUT
339 #endif
340 
341  }
342  SREG = sreg;
343 }
344 
345 
346 
354 // This function sets the following states
355 // GPIB_BUS_LATCH_WR(0xff); // float BUS
356 // GPIB_IO_HI(TE); // BUS OUT with OC PULLUP
357 // BUS IN, DAV OUT, NDAC IN, NRFD IN
358 // ATN IN, EOI IN/OUT, SRQ OUT OC
359 // ============
360 // EOI IN/OUT
361 // TX if TE = 1, ATN = 1
362 // RX if TE = 1, ATN = 0
363 // NOTE: IF ATN goes low when writing when should abort!
365 {
366  uint8_t sreg = SREG;
367  cli();
368  GPIB_BUS_IN(); // CPU data direction IN
369  GPIB_BUS_LATCH_WR(0xff); // Float them HIGH
370  // TX, TE = 1, DAV = T, NDAC = R, NRFD = R
371  GPIB_PIN_FLOAT_UP(DAV); // DAV FLOAT PULLUP
372  GPIB_PIN_FLOAT_UP(NRFD); // SRQ FLOAT PULLUP
373  GPIB_PIN_FLOAT_UP(NDAC); // NDAC FLOAT PULLUP
374 
375  GPIB_PIN_FLOAT_UP(EOI); // EOI FLOAT PULLUIP
376 #if BOARD == 2
377  GPIB_IO_HI(TE);
378 #endif
379  GPIB_BUS_OUT();
380  SREG = sreg;
381 }
382 
383 
389 void gpib_state_init( void )
390 {
391 #if SDEBUG
393  printf("[GPIB STATE INIT]\n");
394 #endif
395 // Disable Parallel Poll Response
396  ppr_init();
397 
398  listen_cleanup();
399 
400  talk_cleanup();
401 
402  spoll = 0; // SPOLL disabled
403  talking = 0; // Listening/Talking State
404  talking_last = 0;
405  listening = 0;
406  listening_last = 0;
407  lastcmd = 0;
408  current = 0;
409  secondary = 0;
410 }
411 
412 
416 void gpib_enable_PPR(int bit)
417 {
418  if(bit < 0 || bit > 7)
419  {
420  printf("gpib_enable_PPR: bit %d out of range\n", (int) bit);
421  return;
422  }
423  ppr_bit_set(bit);
424 #if SDEBUG
425  if(debuglevel & GPIB_PPR)
426  printf("[EPPR bit:%d, mask:%02XH]\n",0xff & bit , 0xff & ppr_reg());
427 #endif
428 }
429 
430 
435 
436 void gpib_disable_PPR(int bit)
437 {
438  if(bit < 0 || bit > 7)
439  {
440  printf("gpib_disable_PPR: bit %d out of range\n", (int) bit);
441  return;
442  }
443  ppr_bit_clr(bit);
444 #if SDEBUG
445  if(debuglevel & GPIB_PPR)
446  printf("[DPPR bit:%d, mask:%02XH]\n",0xff & bit, 0xff & ppr_reg());
447 #endif
448 }
449 
450 
468 
469 uint8_t gpib_detect_PP()
470 {
471  uint8_t ddr, pins;
472 
474  if(GPIB_PIN_TST(ATN) == 0 && GPIB_PIN_TST(EOI) == 0 )
475  {
476 
477 #if SDEBUG
478  if(debuglevel & GPIB_PPR)
480 #endif
481 
483  {
485  // Versions 2 hardware must have bus in READ mode
486  // If not - then data reported wll not be correct
487  // - harmless - debugging only
488  pins = GPIB_PPR_RD(); // Reads Pin states without updating data direction
489 
491  ddr = GPIB_PPR_DDR_RD();
492 #if SDEBUG
493  if(debuglevel & GPIB_PPR)
494  printf("[PPR:%02XH, PIN:%02XH, DDR:%02XH]\n",
495  0xff & ppr_reg(), 0xff & pins, 0xff & ddr );
496 #endif
497  }
498  // Wait for the PPR state to end as there is no handshake
501  while(GPIB_PIN_TST(ATN) == 0 && GPIB_PIN_TST(EOI) == 0 )
502  {
503  if(uart_keyhit(0))
504  {
505 #if 0
506  if(debuglevel & GPIB_ERR)
507  printf("gpib_detect_PP: ATN=0 EOI=0\n");
508 #endif
509  break;
510  }
511 
512  // IFC is always in for a device
513  if(GPIB_PIN_TST(IFC) == 0)
514  {
515  // IFC test and gpib_bus_init() is tested
516  // in every state machine loop
517  // So not needed here
518  // gpib_bus_init();
519  if(debuglevel & GPIB_ERR)
520  printf("gpib_detect_PP: IFC\n");
521  break;
522  }
523  }
524 #if SDEBUG
525  if(debuglevel & GPIB_PPR)
526  gpib_timer_elapsed_end("PP released");
527 #endif
528  return(1);
529  }
530  return(0);
531 }
532 
533 
534 
544 uint16_t gpib_unread(uint16_t ch)
545 {
546  if(!gpib_unread_f)
547  {
548  gpib_unread_data = ch;
549  gpib_unread_f = 1;
550  }
551  else
552  {
554  printf("gpib_unread: error, can only be called once!\n");
555  }
556  return(ch);
557 }
558 
559 
562 uint8_t gpib_bus_read()
563 {
564  uint8_t bus = ~(GPIB_BUS_RD());
565 
567  if(!GPIB_PIN_TST(ATN))
568  bus &= 0x7f;
569  else
570  bus &= 0xff;
571  return(bus);
572 }
573 
574 
581 {
582  uint16_t control = 0;
583  if(GPIB_PIN_TST(ATN) == 0 )
584  control |= ATN_FLAG;
585  if(GPIB_PIN_TST(EOI) == 0 )
586  control |= EOI_FLAG;
587  if(GPIB_PIN_TST(SRQ) == 0 )
588  control |= SRQ_FLAG;
589  if(GPIB_PIN_TST(REN) == 0 )
590  control |= REN_FLAG;
591  if(GPIB_PIN_TST(IFC) == 0 )
592  control |= IFC_FLAG;
593  return(control);
594 }
595 
596 
602 {
603  uint16_t control = 0;
606  if(GPIB_PIN_TST(DAV) == 0 )
607  control |= DAV_FLAG;
608  if(GPIB_PIN_TST(NRFD) == 0 )
609  control |= NRFD_FLAG;
610  if(GPIB_PIN_TST(NDAC) == 0 )
611  control |= NDAC_FLAG;
612  return(control);
613 }
614 
615 
655 uint16_t gpib_write_byte(uint16_t ch)
656 {
657  uint8_t tx_state;
658 
659 // We are always in READ state at this point
660 // No need to initialize as READ mode
661 // Now Done in write_str
662 #if 0
663  gpib_rx_init(0); // NOT busy, NRFD and NDAC OC
664 #endif
665 
666  tx_state = GPIB_TX_START;
668  while(tx_state != GPIB_TX_DONE )
669  {
670  // Not called for writting
671 #if 0
672  gpib_user_task();
673 #endif
674 
675  if(uart_keyhit(0))
676  {
677 #if 0
678  if(debuglevel & GPIB_ERR)
679  printf("gpib_write_byte: KEY state=%d\n", tx_state);
680 #endif
681  break;
682  }
683 
684 #if 0
685 // FIXME - this test used to break write:
686 // We assume that ATN and EOI are always IN during this test
687 // Try to detect PPR - only for debugging
688  if(gpib_detect_PP())
689  ch |= PP_FLAG;
690 #endif
691 
692 // IFC is always in for a device
693  if(GPIB_PIN_TST(IFC) == 0)
694  {
695  ch |= IFC_FLAG;
696  gpib_bus_init();
697  if(debuglevel & GPIB_ERR)
698  printf("gpib_write_byte: IFC state=%d\n", tx_state);
699  break;
700  }
701 
702  switch(tx_state)
703  {
704  // DAV == 1 the bus is ready
705  case GPIB_TX_START:
706  gpib_tx_init();
708  GPIB_BUS_SETTLE(); // Let Data BUS settle
709 
711  tx_state = GPIB_TX_PUT_DATA;
712  break;
713 
714 // Wait for NRFD or NDAC LOW
716  if(GPIB_PIN_TST(NRFD) == 0 || GPIB_PIN_TST(NDAC) == 0)
717  {
718  if(GPIB_PIN_TST(ATN) == 1)
719  {
721  tx_state = GPIB_TX_PUT_DATA;
722  }
723  else
724  {
725 #ifdef SDEBUG
726  if(debuglevel & GPIB_ERR)
727  printf("gpib_write_byte: ATN = 0 while waiting for NRFD LOW state =%d\n",tx_state);
728 #endif
729  }
730  break;
731  }
732  if (gpib_timeout_test())
733  {
735  printf("<gpib_write_byte timeout waiting for NRFD==1 && NDAC == 0>\n");
736  ch |= TIMEOUT_FLAG;
737  tx_state = GPIB_TX_ERROR;
738  break;
739  }
740  break;
741 
742 // Write Data
743  case GPIB_TX_PUT_DATA:
744  if(ch & EOI_FLAG)
745  GPIB_IO_LOW(EOI);
746  else
748  GPIB_BUS_WR((ch & 0xff) ^ 0xff); // Write Data inverted
749  GPIB_BUS_SETTLE(); // Let Data BUS settle
750 
752  tx_state = GPIB_TX_WAIT_FOR_NRFD_HI;
753  break;
754 
755 // Wait for BOTH NRFD HI and NDAC LOW
757 #if 0
758  if(GPIB_PIN_TST(NRFD) == 1 && GPIB_PIN_TST(NDAC) == 0)
759 #else
760  if(GPIB_PIN_TST(NRFD))
761 #endif
762  {
763  tx_state = GPIB_TX_SET_DAV_LOW;
764  }
765  if (gpib_timeout_test())
766  {
768  printf("<gpib_write_byte timeout waiting for NRFD==1 && NDAC == 0>\n");
769  ch |= TIMEOUT_FLAG;
770  tx_state = GPIB_TX_ERROR;
771  break;
772  }
773  break;
774 
775  case GPIB_TX_SET_DAV_LOW:
776  GPIB_IO_LOW(DAV);
777  GPIB_BUS_SETTLE();
779  tx_state = GPIB_TX_WAIT_FOR_NDAC_HI;
780  break;
781 
784  if(GPIB_PIN_TST(NDAC) == 1) // Byte byte accepted
785  {
786  tx_state = GPIB_TX_SET_DAV_HI;
787  break;
788  }
789  if (gpib_timeout_test())
790  {
791  ch |= TIMEOUT_FLAG;
792  tx_state = GPIB_TX_ERROR;
794  printf("<gpib_write_byte timeout waiting for NDAC==1>\n");
795  }
796  break;
797 
799  case GPIB_TX_SET_DAV_HI:
801  GPIB_BUS_SETTLE();
802  tx_state = GPIB_TX_FINISH;
804  break;
805 
806  case GPIB_TX_FINISH:
807 
808  tx_state = GPIB_TX_DONE;
809  break;
810 
811  case GPIB_TX_ERROR:
812  // Free BUS, BUSY on error
813  gpib_rx_init(1);
815  printf("<GPIB TX TIMEOUT>\n");
816  tx_state = GPIB_TX_DONE;
817  break;
818 
819 // FIXME do we want to be busy at this point
820  case GPIB_TX_DONE:
821  break;
822  }
823  }
824  return(ch);
825 }
826 
827 
828 /*
829 DAV - Data Valid Used to Indicate the condition of the information on the Data (010)
830  lines. Driven TRUE (low) by the source when data Is settled and valid and NRFD
831  FALSE (high) has been sensed.
832 NRFD - Not Ready For Data Used to Indicate the condition of readiness of device(s)
833  to accept data. An acceptor sets NRFD TRUE {low} to Indicate It Is not ready
834  to accept data. It· sets this line FALSE (high) when It Is ready to accept data.
835  However, the NRFD line to the source wlll not go high until all participating
836  acceptors are ready to accept data.
837 NDAC - Not Data Accepted Used to Indicate the condition of acceptance of data
838  by device(s). The acceptor sets NDAC TRUE (low) to indicate it has not accepted
839  data. When It accepts data from the 010 lines, It will set Its NDAC line FALSE
840  (high). However, the NDAC line to the source wlll not go high until the
841  last/slowest participating· acceptor accepts the data..
842 */
843 
844 
875 uint16_t gpib_read_byte(int trace)
876 {
877  uint8_t rx_state;
878  uint16_t ch;
879  uint16_t bus, control, control_last;
880  extern uint8_t gpib_unread_f;
881  extern uint16_t gpib_unread_data;
882 
883  ch = 0;
884  control_last = 0;
885 
886  // Return unread - last read - data and control lines
887  if(gpib_unread_f)
888  {
889  // FYI any unread data has been traced
890  gpib_unread_f = 0;
891  return(gpib_unread_data);
892  }
893 
894  // We start and end gpib_read_byte() with NRFD and NDAC LOW
895  // When ATN goes LOW all devices must pull NRFD and NDAC lines LOW
896  // within 200 nanoseconds to permit three-wire handshake
897  // ATN requirements are met because we are always reading in command mode
898  // ATN = 0 = COmmand Mode
899  gpib_rx_init(1);
900 
901  // gpib_rx_init(1) sets the following states
902  // NRFD = 0 Not Ready for Data, NDAC = 0 Data Not Accepted
903  // GPIB_IO_LOW(TE); // BUS IN
904  // BUS IN, DAV IN, NDAC OUT , NRFD OUT
905  // ATN IN, EOI IN, SRQ OUT OC
906 
908  if(trace)
909  {
910  control_last = gpib_control_pin_read();
911  control_last |= gpib_handshake_pin_read();
912  gpib_trace_display(control_last, TRACE_BUS);
913  }
914 
916  rx_state = GPIB_RX_START;
917  while(rx_state != GPIB_RX_DONE)
918  {
919 
920  // User task that is called while waiting for commands
921  gpib_user_task();
922 
923  if(uart_keyhit(0))
924  {
925 #if 0
926  if(debuglevel & GPIB_ERR)
927  printf("gpib_read_byte: state=%d\n", rx_state);
928 #endif
929  break;
930  }
931 
932 // Try to detect parallel poll (PP) for debugging
933 // This test raily detects PP
934 // Can only work on V1 hardware
935 #if BOARD == 1
936  if(gpib_detect_PP())
937  ch |= PP_FLAG;
938 #endif
939 
940  // IFC is alwayon IN always in device mode
941  if(GPIB_PIN_TST(IFC) == 0)
942  {
943  ch |= IFC_FLAG;
944  if(debuglevel & GPIB_ERR)
945  printf("gpib_read_byte: IFC state=%d\n", rx_state);
946  gpib_bus_init();
947  break;
948  }
949 
950  switch(rx_state)
951  {
952 
954  case GPIB_RX_START:
955  //DEBUG
956  if (GPIB_PIN_TST(DAV) == 1)
957  {
958  GPIB_BUS_SETTLE(); // Let Data BUS settle
960  GPIB_BUS_SETTLE(); // Let Data BUS settle
961  rx_state = GPIB_RX_WAIT_FOR_DAV_LOW;
962  }
963  if (gpib_timeout_test())
964  {
965  ch |= TIMEOUT_FLAG;
966  rx_state = GPIB_RX_ERROR;
967  }
968  break;
969 
970  // Wait for Data Avalable without timeout
972  if ( GPIB_PIN_TST(DAV) == 0 )
973  {
974  GPIB_BUS_SETTLE();
975  rx_state = GPIB_RX_DAV_IS_LOW;
976  }
977  break;
978 
979  // Data is Avaliable
980  case GPIB_RX_DAV_IS_LOW:
981  GPIB_IO_LOW(NRFD); // BUSY
982  GPIB_BUS_SETTLE();
983 
984  // Read DATA and Control lines
985  // gpib_bus_read() strips parity if ATN is low command state
986 
987  bus = gpib_bus_read();
988  ch |= bus;
989 
992 
993  control_last = gpib_control_pin_read();
994  ch |= control_last;
995 
996  // In theory the control_last should not have changed
997  // from the initial values. ONly the Data BUS
998  if(trace)
999  {
1000  control_last |= gpib_handshake_pin_read();
1001  gpib_trace_display(bus | control_last, TRACE_READ);
1002  }
1003 
1004  // Release NDAC to say we read the byte
1006  GPIB_BUS_SETTLE(); // NDAC bus settle time
1008  rx_state = GPIB_RX_WAIT_FOR_DAV_HI;
1009  break;
1010 
1013  if (GPIB_PIN_TST(DAV) == 1)
1014  {
1015  GPIB_BUS_SETTLE();
1016  rx_state = GPIB_RX_DAV_IS_HI;
1017  }
1018  if (gpib_timeout_test())
1019  {
1020  ch |= TIMEOUT_FLAG;
1021  rx_state = GPIB_RX_ERROR;
1022  }
1023  break;
1024 
1026  case GPIB_RX_DAV_IS_HI:
1027  GPIB_IO_LOW(NDAC);
1028  GPIB_BUS_SETTLE();
1029  // Now BOTH NDAC and NRFD are LOW
1030  rx_state = GPIB_RX_DONE;
1031  break;
1032 
1033  case GPIB_RX_ERROR:
1034  GPIB_IO_LOW(NRFD);
1035  GPIB_IO_LOW(NDAC);
1036  rx_state = GPIB_RX_DONE;
1037  break;
1038 
1039  case GPIB_RX_DONE:
1040  break;
1041  }
1042 
1043  if(trace)
1044  {
1048  control = gpib_control_pin_read();
1049  control |= gpib_handshake_pin_read();
1050  if(control_last != control)
1051  {
1052  gpib_trace_display(control, TRACE_BUS);
1053  control_last = control;
1054  }
1055  }
1056  }
1057 
1063 
1064  lastcmd = current;
1065 
1066  if(ch & ERROR_MASK || (ch & ATN_FLAG) == 0)
1067  current = 0;
1068  else
1069  current = ch & CMD_MASK;
1070 
1071  return (ch);
1072 }
1073 
1074 
1083 {
1084  if(fo == NULL)
1085  fo = stdout;
1086 
1087  fprintf(fo,"==============================\n");
1088  fprintf(fo,"GPIB bus state\n");
1089  fprintf(fo,"HH . AESRPITB gpib\n");
1090  fprintf(fo,"HH = Hex value of Command or Data\n");
1091  fprintf(fo," . = ASCII of XX only for 0x20 .. 0x7e\n");
1092  fprintf(fo," A = ATN\n");
1093  fprintf(fo," E = EOI\n");
1094  fprintf(fo," S = SRQ\n");
1095  fprintf(fo," R = REN\n");
1096  fprintf(fo," I = IFC\n");
1097  fprintf(fo," P = Parallel Poll seen\n");
1098  fprintf(fo," T = TIMEOUT\n");
1099  fprintf(fo," B = BUS_ERROR\n");
1100  fprintf(fo," GPIB commands\n");
1101 }
1102 
1103 
1135 void gpib_trace_display(uint16_t status,int trace_state)
1136 {
1137  char str[128];
1138  char *tmp= str;
1139  uint8_t bus = status & 0xff;
1140  extern FILE *gpib_log_fp;
1141 
1142  str[0] = 0;
1143 
1144 // Display data bus ???
1145  if(trace_state == TRACE_DISABLE || trace_state == TRACE_READ)
1146  {
1147  uint8_t printable = ' '; // Data
1148  if( !(status & ATN_FLAG) && (bus >= 0x20 && bus <= 0x7e) )
1149  printable = bus;
1150  sprintf(str, "%02X %c ", (int)bus & 0xff, (int)printable);
1151  }
1152  else
1153  {
1154  sprintf(str, " ");
1155  }
1156 
1157  tmp = str + strlen(str);
1158 
1159  if(status & ATN_FLAG)
1160  *tmp++ = 'A';
1161  else
1162  *tmp++ = '-';
1163 
1164  if(status & EOI_FLAG)
1165  *tmp++ = 'E';
1166  else
1167  *tmp++ = '-';
1168 
1169  if(status & SRQ_FLAG)
1170  *tmp++ = 'S';
1171  else
1172  *tmp++ = '-';
1173 
1174  if(status & REN_FLAG)
1175  *tmp++ = 'R';
1176  else
1177  *tmp++ = '-';
1178 
1179  if(status & IFC_FLAG)
1180  *tmp++ = 'I';
1181  else
1182  *tmp++ = '-';
1183 
1184  if(trace_state == TRACE_DISABLE)
1185  {
1186  if(status & PP_FLAG)
1187  *tmp++ = 'P';
1188  else
1189  *tmp++ = '-';
1190  if(status & TIMEOUT_FLAG)
1191  *tmp++ = 'T';
1192  else
1193  *tmp++ = '-';
1194  if(status & BUS_ERROR_FLAG)
1195  *tmp++ = 'B';
1196  else
1197  *tmp++ = '-';
1198  }
1199  else
1200  {
1201 // not used when tracing
1202  *tmp++ = '-';
1203  *tmp++ = '-';
1204  *tmp++ = '-';
1205  }
1206  *tmp = 0;
1207 
1208  if(trace_state == TRACE_READ || trace_state == TRACE_BUS)
1209  {
1210  if(status & DAV_FLAG)
1211  strcat(str," DAV");
1212  else
1213  strcat(str," ");
1214  if(status & NRFD_FLAG)
1215  strcat(str," NRFD");
1216  else
1217  strcat(str," ");
1218  if(status & NDAC_FLAG)
1219  strcat(str," NDAC");
1220  else
1221  strcat(str," ");
1222  }
1223 
1224  if( (status & ATN_FLAG) )
1225  {
1226  int i;
1227  int cmd = status & CMD_MASK;
1228  if(cmd >= 0x020 && cmd <= 0x3e)
1229  sprintf(tmp," MLA %02Xh", cmd & 0x1f);
1230  else if(cmd >= 0x040 && cmd <= 0x4e)
1231  sprintf(tmp," MTA %02Xh", cmd & 0x1f);
1232  else if(cmd >= 0x060 && cmd <= 0x6f)
1233  sprintf(tmp," MSA %02Xh", cmd & 0x1f);
1234  else
1235  {
1236  for(i=0;gpib_tokens[i].cmd != -1;++i)
1237  {
1238  if(cmd == gpib_tokens[i].cmd)
1239  {
1240  strcat(tmp," ");
1241  strcat(tmp,gpib_tokens[i].name);
1242  break;
1243  }
1244  }
1245  }
1246  }
1247 
1248  if(gpib_log_fp == NULL)
1249  gpib_log_fp = stdout;
1250 
1251 // Echo to console unless file is the console
1252  if(gpib_log_fp != stdout)
1253  puts(str);
1254 
1255 // Save to file
1256  fprintf(gpib_log_fp,"%s\n",str);
1257 }
1258 
1259 
1265 
1266 void gpib_decode(uint16_t ch)
1267 {
1268  gpib_trace_display(ch,0);
1269 }
1270 
1271 
1307 int gpib_read_str(uint8_t *buf, int size, uint16_t *status)
1308 {
1309  uint16_t val;
1310  int ind = 0;
1311 
1312  *status &= STATUS_MASK;
1313 
1314  if(!size)
1315  {
1317  printf("gpib_read_str: size = 0\n");
1318  }
1319 
1320  while(ind < size)
1321  {
1322  val = gpib_read_byte(NO_TRACE);
1323 #if SDEBUG
1325  gpib_decode(val);
1326 #endif
1327  if(val & ERROR_MASK)
1328  {
1329  *status |= (val & ERROR_MASK);
1330  break;
1331  }
1332 
1333  if((*status & ATN_FLAG) != (val & ATN_FLAG))
1334  {
1336  printf("gpib_read_str(ind:%d): ATN %02XH unexpected\n",ind, 0xff & val);
1337  gpib_unread(val);
1338  break;
1339  }
1340 
1341  if(val & ATN_FLAG)
1342  buf[ind] = (val & CMD_MASK);
1343  else
1344  buf[ind] = (val & DATA_MASK);
1345  ++ind;
1346 
1347  if(!(val & ATN_FLAG) && (val & EOI_FLAG) )
1348  {
1349 
1350  if(*status & EOI_FLAG)
1351  return(ind);
1354  *status |= EOI_FLAG;
1355  break;
1356  }
1357  }
1358  if ( ind != size )
1359  {
1361  printf("[gpib_read_str read(%d) expected(%d)]\n", ind , size);
1362  }
1363  return(ind);
1364 }
1365 
1366 
1396 int gpib_write_str(uint8_t *buf, int size, uint16_t *status)
1397 {
1398  uint16_t val, ch;
1399  int ind = 0;
1400 
1401  *status &= STATUS_MASK;
1402 
1403  if(!size)
1404  {
1406  printf("gpib_write_str: size = 0\n");
1407  }
1408 
1409  // Start with NRFD and NDAC = 1 - ie off the OC BUS
1410  gpib_rx_init(0);
1411 
1412 // Wait until ATN is released!
1413 #if 1
1414  if (GPIB_PIN_TST(ATN) == 0)
1415  {
1416  // Switch to READ mode and NRFD = 0, NDAC = 0
1417  // gpib_rx_init(0);
1418 #if 0
1419  // This debug statements only proves ATN can be low when called
1420  printf("gpib_write_str: ATN = 1 at start\n");
1421 #endif
1422  // Wait for ATN free
1423  // Keep in mind that we have been addressed to talk already
1424  // So waiting is ok - they won't be expecting a reply until
1425  // They are ready
1427  while(GPIB_PIN_TST(ATN) == 0)
1428  {
1429  if(gpib_timeout_test())
1430  {
1431  gpib_rx_init(1);
1433  printf("<gpib_write_str timeout waiting for ATN = 1>\n");
1434  *status |= (TIMEOUT_FLAG | BUS_ERROR_FLAG);
1435  return(ind);
1436  }
1437  }
1438  }
1439 #endif
1440 
1441 // Wait until DAV is released!
1442 #if 1
1443  // Wait if DAV = 0 as the bus is busy
1445  while ( GPIB_PIN_TST(DAV) == 0)
1446  {
1447  if(gpib_timeout_test())
1448  {
1450  printf("<BUS waiting for DAV==1>\n");
1451  *status |= (TIMEOUT_FLAG | BUS_ERROR_FLAG);
1452  return(ind);
1453  }
1454  }
1455 #endif
1456 
1457  while(ind < size)
1458  {
1459  ch = buf[ind++] & 0xff; // unsigned
1460 
1461  if( (*status & EOI_FLAG) && (ind == size ) )
1462  ch |= EOI_FLAG;
1463 
1465 
1466  val = gpib_write_byte(ch);
1467  *status |= (val & ERROR_MASK);
1468 
1469 #if SDEBUG
1471  gpib_decode(val);
1472 #endif
1473  if(val & ERROR_MASK)
1474  {
1475  break;
1476  }
1477 
1478  } // while(ind < size)
1479 
1480 // End by setting receive mode and set NRFD and NDAC busy until
1481 // we get back to the main loop (this happens very quickly
1482  gpib_rx_init(1); // BUSY
1483 
1484  if ( ind != size )
1485  {
1487  printf("[gpib_write_str sent(%d) expected(%d)]\n", ind,size);
1488  }
1489  return(ind);
1490 }
CMD_MASK
#define CMD_MASK
Definition: gpib.h:53
gpib_handshake_pin_read
uint16_t gpib_handshake_pin_read()
Read GPIB handshake lines only FIXME: V2 boards can only read pins enabled for read by the SN75162 FI...
Definition: gpib.c:601
REN
#define REN
Definition: gpib_hal.h:67
gpib_timer_task
void gpib_timer_task()
Main GPIB timer task called by low level interrup hander.
Definition: gpib.c:190
GPIB_RW_STR_BUS_DECODE
#define GPIB_RW_STR_BUS_DECODE
Definition: debug.h:12
NO_TRACE
#define NO_TRACE
Definition: gpib.h:66
GPIB_TX_PUT_DATA
@ GPIB_TX_PUT_DATA
Definition: gpib.h:85
GPIB_PPR_DDR_RD
#define GPIB_PPR_DDR_RD()
read full port direction register state Optional - see gpib_detect_PPR
Definition: gpib_hal.h:136
fatfs.h
current
uint16_t current
Definition: gpib.c:97
uart_keyhit
int uart_keyhit(uint8_t uart)
Do we have receive characters waiting ?.
Definition: rs232.c:394
sprintf
#define sprintf(s, format, args...)
Definition: user_config.h:73
_gpib_t::down_counter_done
volatile uint8_t down_counter_done
Definition: gpib_hal.h:31
GPIB_RX_DAV_IS_HI
@ GPIB_RX_DAV_IS_HI
Definition: gpib.h:75
BUS_ERROR_FLAG
#define BUS_ERROR_FLAG
Definition: gpib.h:42
GPIB_PPR_RD
#define GPIB_PPR_RD()
We attempt to detect PPR states for logging only PPR is handled in hardware - but useful if we can de...
Definition: gpib_hal.h:132
printf
MEMSPACE int printf(const char *format,...)
GPIB_TX_WAIT_FOR_NDAC_HI
@ GPIB_TX_WAIT_FOR_NDAC_HI
Definition: gpib.h:88
listen_cleanup
void listen_cleanup()
Called when the listen address changes.
Definition: gpib_task.c:940
gpib_timer_elapsed_begin
void gpib_timer_elapsed_begin(void)
Start measuring time - used with hpib_timer_elapsed_end()
Definition: gpib.c:133
gpib_control_pin_read
uint16_t gpib_control_pin_read()
Read GPIB control lines only FIXME V2 boards can only read pins enabled for read by the SN75162 FIXME...
Definition: gpib.c:580
debuglevel
int debuglevel
Debug flag - used to log GPIB and emulator messages.
Definition: gpib_task.c:33
DAV_FLAG
#define DAV_FLAG
handshake flasg used in tracing
Definition: gpib.h:45
listening
uint8_t listening
gpib listen address
Definition: gpib.c:90
STATUS_MASK
#define STATUS_MASK
Definition: gpib.h:54
gpib_disable_PPR
void gpib_disable_PPR(int bit)
Disable PPR (Parallel Poll Response) for a device.
Definition: gpib.c:436
GPIB_TX_WAIT_FOR_NRFD_OR_NDAC_LOW
@ GPIB_TX_WAIT_FOR_NRFD_OR_NDAC_LOW
Definition: gpib.h:84
gpib_token_t
GPIB command mapping to printable strings.
Definition: gpib.c:103
hal.h
ppr_bit_set
void ppr_bit_set(uint8_t bit)
Enable hardware PPR response for a given device.
Definition: gpib_hal.c:153
strcat
MEMSPACE WEAK_ATR char * strcat(char *dest, const char *src)
Append string.
Definition: stringsup.c:199
gpib_decode_header
void gpib_decode_header(FILE *fo)
Displays help for gpib_decode() function.
Definition: gpib.c:1082
GPIB_PIN_FLOAT_UP
#define GPIB_PIN_FLOAT_UP(a)
changes pin mode to read
Definition: gpib_hal.h:103
GPIB_BUS_WR
#define GPIB_BUS_WR(val)
changes to state of full 8bit port to out then write
Definition: gpib_hal.h:97
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.h
AMIGO disk emulator for HP85 disk emulator project for AVR.
gpib_token_t::name
char * name
Definition: gpib.c:106
GPIB_IO_HI
#define GPIB_IO_HI(a)
changes pin mode to write then set hi
Definition: gpib_hal.h:112
GPIB_BUS_OR_CMD_BYTE_MESSAGES
#define GPIB_BUS_OR_CMD_BYTE_MESSAGES
Definition: debug.h:6
TE
#define TE
Definition: gpib_hal.h:71
GPIB_TX_WAIT_FOR_NRFD_HI
@ GPIB_TX_WAIT_FOR_NRFD_HI
Definition: gpib.h:86
gpib_timer
gpib_t gpib_timer
Definition: gpib_hal.c:22
SRQ_FLAG
#define SRQ_FLAG
Definition: gpib.h:34
NRFD
#define NRFD
Definition: gpib_hal.h:62
IFC_FLAG
#define IFC_FLAG
Definition: gpib.h:37
SC
#define SC
Definition: gpib_hal.h:74
ppr_init
void ppr_init()
Reset PPR enable register - all disable..
Definition: gpib_hal.c:126
ATN
#define ATN
Definition: gpib_hal.h:66
REN_FLAG
#define REN_FLAG
Definition: gpib.h:36
gpib_tokens
gpib_token_t gpib_tokens[]
Definition: gpib.c:109
GPIB_RX_ERROR
@ GPIB_RX_ERROR
Definition: gpib.h:77
GPIB_TX_SET_DAV_LOW
@ GPIB_TX_SET_DAV_LOW
Definition: gpib.h:87
PP_FLAG
#define PP_FLAG
BUS state flags.
Definition: gpib.h:40
ERROR_MASK
#define ERROR_MASK
Definition: gpib.h:49
defines.h
GPIB, AMIGO, SS80 and device defines.
HTIMEOUT
#define HTIMEOUT
This is the default BUS timeout of 0.5 Seconds in Microseconds.
Definition: gpib.h:30
gpib_token_t::cmd
int cmd
Definition: gpib.c:105
GPIB_BUS_LATCH_WR
#define GPIB_BUS_LATCH_WR(val)
writes GPIB port latch without changing to write direction
Definition: gpib_hal.h:94
gpib_write_byte
uint16_t gpib_write_byte(uint16_t ch)
Send 1 byte and control line states to GPIB BUS.
Definition: gpib.c:655
GPIB_BUS_IN
#define GPIB_BUS_IN()
changes to state of full 8bit port to in
Definition: gpib_hal.h:88
NULL
#define NULL
Definition: user_config.h:85
GPIB_IOBUFF_LEN
#define GPIB_IOBUFF_LEN
Definition: gpib.h:101
clock_elapsed_begin
MEMSPACE void clock_elapsed_begin()
Store current struct timespec in __clock_elapsed.
Definition: timer.c:184
talking_last
uint8_t talking_last
gpib last talk address
Definition: gpib.c:87
gpib_iobuff
uint8_t gpib_iobuff[GPIB_IOBUFF_LEN]
common IO buffer for gpib_read_str() and gpib_write_str()
Definition: gpib.c:77
GPIB_RX_WAIT_FOR_DAV_LOW
@ GPIB_RX_WAIT_FOR_DAV_LOW
Definition: gpib.h:71
GPIB_RX_DONE
@ GPIB_RX_DONE
Definition: gpib.h:78
GPIB_ERR
#define GPIB_ERR
Definition: debug.h:4
NDAC_FLAG
#define NDAC_FLAG
Definition: gpib.h:47
__file
FILE type structure.
Definition: posix.h:158
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
GPIB_RX_WAIT_FOR_DAV_HI
@ GPIB_RX_WAIT_FOR_DAV_HI
Definition: gpib.h:74
gpib_task.h
High level GPIB command handler for HP85 disk emulator project for AVR.
_gpib_t::elapsed
volatile uint32_t elapsed
Definition: gpib_hal.h:29
talk_cleanup
void talk_cleanup()
Called when the GPIB talk address changes.
Definition: gpib_task.c:965
SRQ
#define SRQ
Definition: gpib_hal.h:65
GPIB_DEVICE_STATE_MESSAGES
#define GPIB_DEVICE_STATE_MESSAGES
Definition: debug.h:9
PE
#define PE
Definition: gpib_hal.h:72
gpib_decode
void gpib_decode(uint16_t ch)
Calls gpib_decode_str() and dosplays the result.
Definition: gpib.c:1266
gpib_timeout_set
void gpib_timeout_set(uint32_t time)
Set GPIB timeout timer in units of GPIB_TASK_TIC_US.
Definition: gpib.c:207
gpib_rx_init
void gpib_rx_init(uint8_t busy)
Initialize GPIB Bus control lines for READ.
Definition: gpib.c:307
TRACE_BUS
@ TRACE_BUS
Definition: gpib.h:61
GPIB_TX_START
@ GPIB_TX_START
Definition: gpib.h:83
gpib_bus_read
uint8_t gpib_bus_read()
Read GPIB data BUS only.
Definition: gpib.c:562
stdout
#define stdout
Definition: posix.h:274
listening_last
uint8_t listening_last
gpib last listen address
Definition: gpib.c:92
GPIB_TX_ERROR
@ GPIB_TX_ERROR
Definition: gpib.h:91
lastcmd
uint16_t lastcmd
gpib current and last command
Definition: gpib.c:97
EOI_FLAG
#define EOI_FLAG
bus flags
Definition: gpib.h:33
GPIB_BUS_SETTLE
#define GPIB_BUS_SETTLE()
Definition: gpib_hal.h:21
time
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
Definition: time.c:843
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
gpib_log_fp
FILE * gpib_log_fp
GPIB log file handel.
Definition: gpib_task.c:36
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
EOI
#define EOI
Definition: gpib_hal.h:60
GPIB_TX_FINISH
@ GPIB_TX_FINISH
Definition: gpib.h:90
gpib_tx_init
void gpib_tx_init()
Initialize GPIB Bus control lines for WRITE.
Definition: gpib.c:364
TIMEOUT_FLAG
#define TIMEOUT_FLAG
Definition: gpib.h:41
GPIB_PP_BUS_STATUS
#define GPIB_PP_BUS_STATUS
Definition: debug.h:13
gpib_enable_PPR
void gpib_enable_PPR(int bit)
Definition: gpib.c:416
DATA_MASK
#define DATA_MASK
Definition: gpib.h:52
ATN_FLAG
#define ATN_FLAG
Definition: gpib.h:35
NRFD_FLAG
#define NRFD_FLAG
Definition: gpib.h:46
DC
#define DC
Definition: gpib_hal.h:73
GPIB_BUS_RD
#define GPIB_BUS_RD()
changes to state of full 8bit port to in then read
Definition: gpib_hal.h:91
GPIB_PIN_TST
#define GPIB_PIN_TST(a)
checks the pin state without changing read/write mode
Definition: gpib_hal.h:106
TRACE_DISABLE
@ TRACE_DISABLE
Definition: gpib.h:59
gpib_timer_elapsed_end
void gpib_timer_elapsed_end(char *msg)
Display user message and time delta since gpib_timer_elapsed_begin() call.
Definition: gpib.c:164
gpib_unread_f
uint8_t gpib_unread_f
gpib_unread() flag
Definition: gpib.c:80
gpib_read_str
int gpib_read_str(uint8_t *buf, int size, uint16_t *status)
Read string from GPIB BUS - controlled by status flags.
Definition: gpib.c:1307
talking
uint8_t talking
gpib talk address
Definition: gpib.c:85
ppr_bit_clr
void ppr_bit_clr(uint8_t bit)
Disbale hardware PPR response for a given device.
Definition: gpib_hal.c:177
GPIB_TX_SET_DAV_HI
@ GPIB_TX_SET_DAV_HI
Definition: gpib.h:89
gpib.h
GPIB emulator for HP85 disk emulator project for AVR.
GPIB_RX_DAV_IS_LOW
@ GPIB_RX_DAV_IS_LOW
Definition: gpib.h:72
gpib_detect_PP
uint8_t gpib_detect_PP()
Attempt to detect the Parallel Poll Reposnse state Used only for debugging - it is unlikely that we w...
Definition: gpib.c:469
gpib_user_task
void gpib_user_task()
user task called in GPIB read/write byte functions
Definition: main.c:236
gpib_unread
uint16_t gpib_unread(uint16_t ch)
GPIB ungets one character and all status states.
Definition: gpib.c:544
TRACE_READ
@ TRACE_READ
Definition: gpib.h:60
GPIB_TASK_TIC_US
#define GPIB_TASK_TIC_US
Definition: gpib_hal.h:23
gpib_timeout_test
uint8_t gpib_timeout_test()
Test GPIB timeout timer for timeout condition.
Definition: gpib.c:220
GPIB_TX_DONE
@ GPIB_TX_DONE
Definition: gpib.h:92
DAV
#define DAV
Definition: gpib_hal.h:61
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
gpib_trace_display
void gpib_trace_display(uint16_t status, int trace_state)
decode/display all control flags and data on the GPIB BUS
Definition: gpib.c:1135
posix.h
POSIX wrapper for FatFS.
_gpib_t::down_counter
volatile uint32_t down_counter
Definition: gpib_hal.h:30
ppr_reg
uint8_t ppr_reg()
Return PPR enable register.
Definition: gpib_hal.c:109
NDAC
#define NDAC
Definition: gpib_hal.h:63
clock_elapsed_end
MEMSPACE void clock_elapsed_end(char *msg)
Subtract and display time difference from clock_elapesed_begin().
Definition: timer.c:200
puts
MEMSPACE int puts(const char *str)
put a string to stdout See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:493
IFC
#define IFC
Definition: gpib_hal.h:64
GPIB_IO_LOW
#define GPIB_IO_LOW(a)
changes pin mode to write then set low
Definition: gpib_hal.h:109
spoll
uint8_t spoll
gpib serial poll status
Definition: gpib.c:95
debug.h
GPIB_RX_START
@ GPIB_RX_START
Definition: gpib.h:70
gpib_timer_reset
void gpib_timer_reset(void)
Reset elapsed and timeout timers Elapses and Timeout Timers.
Definition: gpib.c:150
gpib_unread_data
uint16_t gpib_unread_data
gpib_unread() data
Definition: gpib.c:82
gpib_state_init
void gpib_state_init(void)
Reset GPIB states and related variables.
Definition: gpib.c:389
GPIB_BUS_OUT
#define GPIB_BUS_OUT()
changes to state of full 8bit port to out
Definition: gpib_hal.h:85