HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
22 #include "user_config.h"
27 #define GPIB_BUS_SETTLE_DELAY 2
30 #define HTIMEOUT (500000L / GPIB_TASK_TIC_US)
33 #define EOI_FLAG 0x0100
34 #define SRQ_FLAG 0x0200
35 #define ATN_FLAG 0x0400
36 #define REN_FLAG 0x0800
37 #define IFC_FLAG 0x1000
40 #define PP_FLAG 0x2000
41 #define TIMEOUT_FLAG 0x4000
42 #define BUS_ERROR_FLAG 0x8000
45 #define DAV_FLAG 0x2000
46 #define NRFD_FLAG 0x4000
47 #define NDAC_FLAG 0x8000
49 #define ERROR_MASK (IFC_FLAG | TIMEOUT_FLAG | BUS_ERROR_FLAG)
50 #define CONTROL_MASK (EOI_FLAG | SRQ_FLAG | ATN_FLAG | REN_FLAG)
52 #define DATA_MASK 0x00ff
53 #define CMD_MASK 0x007f
54 #define STATUS_MASK 0xff00
101 #define GPIB_IOBUFF_LEN 512
111 extern uint8_t
spoll;
140 int gpib_read_str ( uint8_t *buf ,
int size , uint16_t *status );
141 int gpib_write_str ( uint8_t *buf ,
int size , uint16_t *status );
int gpib_write_str(uint8_t *buf, int size, uint16_t *status)
Send string to GPIB BUS - controlled by status flags.
@ GPIB_TX_WAIT_FOR_NDAC_HI
uint8_t secondary
gpib secondary
@ GPIB_TX_WAIT_FOR_NRFD_OR_NDAC_LOW
uint16_t gpib_handshake_pin_read(void)
Read GPIB handshake lines only FIXME: V2 boards can only read pins enabled for read by the SN75162 FI...
uint8_t talking
gpib talk address
void gpib_tx_init(void)
Initialize GPIB Bus control lines for WRITE.
@ GPIB_TX_WAIT_FOR_NRFD_HI
uint16_t gpib_read_byte(int trace)
read 1 byte and control line status from GPIB BUS
uint8_t gpib_timeout_test(void)
Test GPIB timeout timer for timeout condition.
void gpib_timer_elapsed_end(char *msg)
Display user message and time delta since gpib_timer_elapsed_begin() call.
void gpib_decode_header(FILE *fo)
Displays help for gpib_decode() function.
uint16_t gpib_unread(uint16_t ch)
GPIB ungets one character and all status states.
@ GPIB_RX_WAIT_FOR_DAV_LOW
@ GPIB_RX_WAIT_FOR_DAV_HI
void gpib_trace_display(uint16_t status, int trace_state)
decode/display all control flags and data on the GPIB BUS
uint8_t spoll
gpib serial poll status
void gpib_bus_init(void)
Initialize/Release GPIB Bus control lines Used for Power ON, Reset or IFC LOW reset conditions.
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
uint8_t talking_last
gpib last talk address
uint8_t gpib_iobuff[GPIB_IOBUFF_LEN]
common IO buffer for gpib_read_str() and gpib_write_str()
uint8_t listening
gpib listen address
uint16_t gpib_control_pin_read(void)
Read GPIB control lines only FIXME V2 boards can only read pins enabled for read by the SN75162 FIXME...
uint8_t gpib_bus_read(void)
Read GPIB data BUS only.
void gpib_timer_reset(void)
Reset elapsed and timeout timers Elapses and Timeout Timers.
void gpib_state_init(void)
Reset GPIB states and related variables.
uint8_t listening_last
gpib last listen address
@ GPIB_RX_WAIT_FOR_NDAC_HI
void gpib_timer_elapsed_begin(void)
Start measuring time - used with hpib_timer_elapsed_end()
void gpib_timer_task(void)
Main GPIB timer task called by low level interrup hander.
void gpib_disable_PPR(int bit)
Disable PPR (Parallel Poll Response) for a device.
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
int debuglevel
Debug flag - used to log GPIB and emulator messages.
void gpib_decode(uint16_t ch)
Calls gpib_decode_str() and dosplays the result.
void gpib_timeout_set(uint32_t time)
Set GPIB timeout timer in units of GPIB_TASK_TIC_US.
uint8_t gpib_detect_PP(void)
Attempt to detect the Parallel Poll Reposnse state Used only for debugging - it is unlikely that we w...
void gpib_enable_PPR(int bit)
void gpib_rx_init(uint8_t busy)
Initialize GPIB Bus control lines for READ.
uint16_t gpib_write_byte(uint16_t ch)
Send 1 byte and control line states to GPIB BUS.
int gpib_read_str(uint8_t *buf, int size, uint16_t *status)
Read string from GPIB BUS - controlled by status flags.