HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
GPIB emulator for HP85 disk emulator project for AVR. More...
#include "user_config.h"
#include "hal.h"
#include "gpib_hal.h"
#include "defines.h"
#include "gpib.h"
#include "gpib_task.h"
#include "amigo.h"
#include "ss80.h"
#include "fatfs.h"
#include "posix.h"
#include "debug.h"
Go to the source code of this file.
Data Structures | |
struct | gpib_token_t |
GPIB command mapping to printable strings. More... | |
Functions | |
void | gpib_user_task () |
user task called in GPIB read/write byte functions More... | |
void | gpib_timer_elapsed_begin (void) |
Start measuring time - used with hpib_timer_elapsed_end() More... | |
void | gpib_timer_reset (void) |
Reset elapsed and timeout timers Elapses and Timeout Timers. More... | |
void | gpib_timer_elapsed_end (char *msg) |
Display user message and time delta since gpib_timer_elapsed_begin() call. More... | |
void | gpib_timer_task () |
Main GPIB timer task called by low level interrup hander. More... | |
void | gpib_timeout_set (uint32_t time) |
Set GPIB timeout timer in units of GPIB_TASK_TIC_US. More... | |
uint8_t | gpib_timeout_test () |
Test GPIB timeout timer for timeout condition. More... | |
void | gpib_bus_init () |
Initialize/Release GPIB Bus control lines Used for Power ON, Reset or IFC LOW reset conditions. More... | |
void | gpib_rx_init (uint8_t busy) |
Initialize GPIB Bus control lines for READ. More... | |
void | gpib_tx_init () |
Initialize GPIB Bus control lines for WRITE. More... | |
void | gpib_state_init (void) |
Reset GPIB states and related variables. More... | |
void | gpib_enable_PPR (int bit) |
void | gpib_disable_PPR (int bit) |
Disable PPR (Parallel Poll Response) for a device. More... | |
uint8_t | gpib_detect_PP () |
Attempt to detect the Parallel Poll Reposnse state Used only for debugging - it is unlikely that we will catch this state V2 hardware - this does not work unless reading BUS. More... | |
uint16_t | gpib_unread (uint16_t ch) |
GPIB ungets one character and all status states. More... | |
uint8_t | gpib_bus_read () |
Read GPIB data BUS only. More... | |
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 We could add a test for read/write state ?? More... | |
uint16_t | gpib_handshake_pin_read () |
Read GPIB handshake lines only FIXME: V2 boards can only read pins enabled for read by the SN75162 FIXME We could add a test for read/write state ?? More... | |
uint16_t | gpib_write_byte (uint16_t ch) |
Send 1 byte and control line states to GPIB BUS. More... | |
uint16_t | gpib_read_byte (int trace) |
read 1 byte and control line status from GPIB BUS More... | |
void | gpib_decode_header (FILE *fo) |
Displays help for gpib_decode() function. More... | |
void | gpib_trace_display (uint16_t status, int trace_state) |
decode/display all control flags and data on the GPIB BUS More... | |
void | gpib_decode (uint16_t ch) |
Calls gpib_decode_str() and dosplays the result. More... | |
int | gpib_read_str (uint8_t *buf, int size, uint16_t *status) |
Read string from GPIB BUS - controlled by status flags. More... | |
int | gpib_write_str (uint8_t *buf, int size, uint16_t *status) |
Send string to GPIB BUS - controlled by status flags. More... | |
Variables | |
uint8_t | gpib_iobuff [GPIB_IOBUFF_LEN] |
common IO buffer for gpib_read_str() and gpib_write_str() More... | |
uint8_t | gpib_unread_f = 0 |
gpib_unread() flag More... | |
uint16_t | gpib_unread_data |
gpib_unread() data More... | |
uint8_t | talking |
gpib talk address More... | |
uint8_t | talking_last |
gpib last talk address More... | |
uint8_t | listening |
gpib listen address More... | |
uint8_t | listening_last |
gpib last listen address More... | |
uint8_t | spoll |
gpib serial poll status More... | |
uint16_t | lastcmd |
gpib current and last command More... | |
uint16_t | current |
uint8_t | secondary |
gpib secondary More... | |
gpib_token_t | gpib_tokens [] |
GPIB emulator for HP85 disk emulator project for AVR.
Definition in file gpib.c.
void gpib_bus_init | ( | ) |
Initialize/Release GPIB Bus control lines Used for Power ON, Reset or IFC LOW reset conditions.
FIXME verify resetting gpib_unread_f is ALWAYS correct when called
Definition at line 229 of file gpib.c.
Referenced by gpib_init_devices(), gpib_read_byte(), gpib_write_byte(), and main().
uint8_t gpib_bus_read | ( | ) |
Read GPIB data BUS only.
if a command byte (ATN low) then strip partity
Definition at line 562 of file gpib.c.
Referenced by gpib_read_byte().
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 We could add a test for read/write state ??
Definition at line 580 of file gpib.c.
Referenced by gpib_read_byte().
void gpib_decode | ( | uint16_t | ch | ) |
Calls gpib_decode_str() and dosplays the result.
Display: decode/display all control flags and data on GPIB BUS.
Definition at line 1266 of file gpib.c.
Referenced by gpib_read_str(), gpib_task(), gpib_trace_task(), and gpib_write_str().
void gpib_decode_header | ( | FILE * | fo | ) |
Displays help for gpib_decode() function.
You would call this once at the start of a trace for example.
[in] | fo | FILE pointer or "stdout" |
Definition at line 1082 of file gpib.c.
Referenced by gpib_trace_task().
uint8_t gpib_detect_PP | ( | ) |
Attempt to detect the Parallel Poll Reposnse state Used only for debugging - it is unlikely that we will catch this state V2 hardware - this does not work unless reading BUS.
FIXME we can only read EOI in bus READ mode
Bus pin states but do not alter port direction state
debugging - read the ddr data direction bits to determine read/write state
FIXME we can only read EOI in bus READ mode FIXME We add a test for read/write state ??
Definition at line 469 of file gpib.c.
Referenced by gpib_read_byte(), and gpib_write_byte().
void gpib_disable_PPR | ( | int | bit | ) |
Disable PPR (Parallel Poll Response) for a device.
Definition at line 436 of file gpib.c.
Referenced by GPIB_SECONDARY_ADDRESS(), SS80_Command_State(), SS80_COMMANDS(), SS80_Execute_State(), SS80_init(), and SS80_Transparent_State().
void gpib_enable_PPR | ( | int | bit | ) |
Definition at line 416 of file gpib.c.
Referenced by SS80_Amigo_Clear(), SS80_Cancel(), SS80_Channel_Independent_Clear(), SS80_Command_State(), SS80_Execute_State(), SS80_Selected_Device_Clear(), SS80_Transparent_State(), and SS80_Universal_Device_Clear().
uint16_t gpib_handshake_pin_read | ( | ) |
Read GPIB handshake lines only FIXME: V2 boards can only read pins enabled for read by the SN75162 FIXME We could add a test for read/write state ??
for tracing we can reuse the error flag bit values for DAV,NRFD and NDAC FYI: This has no impact on the gpib_read_byte() functions and return values
Definition at line 601 of file gpib.c.
Referenced by gpib_read_byte().
uint16_t gpib_read_byte | ( | int | trace | ) |
read 1 byte and control line status from GPIB BUS
[in] | trace | if non-zero do full bus handshake trace of read |
V2 boards can NOT read ALL bits on the control bus at once
DAV must be high
V2 boards can NOT read all control bits at once NRFD,NDAC and SRQ are cirrently outputs
Wait for DAV HI
Ready for next byte
V2 boards can not read all control and handshake bits at once FIXME We could add a test for read/write state ?? NRFD,NDAC SRQ are outputs durring write phase, but not at very start
Note: see: HP-IB Tutorial pg 13
Definition at line 875 of file gpib.c.
Referenced by gpib_read_str(), gpib_task(), and gpib_trace_task().
int gpib_read_str | ( | uint8_t * | buf, |
int | size, | ||
uint16_t * | status | ||
) |
Read string from GPIB BUS - controlled by status flags.
[in] | buf | Binary gpib string to read |
[in] | size | Size of string we want to read |
[in] | status | controls sending modes and returns status |
Definition at line 1307 of file gpib.c.
Referenced by SS80_Amigo_Clear(), SS80_Command_State(), SS80_locate_and_write(), and SS80_Transparent_State().
void gpib_rx_init | ( | uint8_t | busy | ) |
Initialize GPIB Bus control lines for READ.
Definition at line 307 of file gpib.c.
Referenced by gpib_read_byte(), gpib_write_byte(), and gpib_write_str().
void gpib_state_init | ( | void | ) |
Reset GPIB states and related variables.
Definition at line 389 of file gpib.c.
Referenced by gpib_init_devices(), and main().
void gpib_timeout_set | ( | uint32_t | time | ) |
Set GPIB timeout timer in units of GPIB_TASK_TIC_US.
Definition at line 207 of file gpib.c.
Referenced by gpib_read_byte(), gpib_write_byte(), and gpib_write_str().
uint8_t gpib_timeout_test | ( | ) |
Test GPIB timeout timer for timeout condition.
Definition at line 220 of file gpib.c.
Referenced by gpib_read_byte(), gpib_write_byte(), and gpib_write_str().
void gpib_timer_elapsed_begin | ( | void | ) |
Start measuring time - used with hpib_timer_elapsed_end()
See gpib_hal.c for CPU specific code Provide Elapsed timer and Timeout timer - both in Microseconds We use the lower level clock elapsed timer functions here
Definition at line 133 of file gpib.c.
Referenced by gpib_detect_PP(), gpib_tests(), SS80_locate_and_read(), and SS80_locate_and_write().
void gpib_timer_elapsed_end | ( | char * | msg | ) |
Display user message and time delta since gpib_timer_elapsed_begin() call.
Display a message
Definition at line 164 of file gpib.c.
Referenced by gpib_detect_PP(), gpib_tests(), SS80_locate_and_read(), and SS80_locate_and_write().
void gpib_timer_reset | ( | void | ) |
Reset elapsed and timeout timers Elapses and Timeout Timers.
Definition at line 150 of file gpib.c.
Referenced by gpib_timer_init().
void gpib_timer_task | ( | ) |
Main GPIB timer task called by low level interrup hander.
Definition at line 190 of file gpib.c.
Referenced by gpib_timer_init().
void gpib_trace_display | ( | uint16_t | status, |
int | trace_state | ||
) |
decode/display all control flags and data on the GPIB BUS
[in] | status | data bus value (lower 8 bits) control bus (upper 8 bits) |
[in] | trace_state | level of trace detail TRACE_DISABLE = normal bus and control status report from read state only TRACE_READ = trace bus and control reporting from read state only TRACE_BUS = trace control reporting from all non-read states, data bus values are omiited Note: trace states add DAV,NRFD,NDAC and ommit PPR status, BUS error and timeout given that gpib_read_byte() report these anyway
|
[in] | str | string pointer to store the decoded result in. |
Definition at line 1135 of file gpib.c.
Referenced by gpib_decode(), and gpib_read_byte().
void gpib_tx_init | ( | ) |
Initialize GPIB Bus control lines for WRITE.
Definition at line 364 of file gpib.c.
Referenced by gpib_write_byte().
uint16_t gpib_unread | ( | uint16_t | ch | ) |
GPIB ungets one character and all status states.
Pushes a character back into the read buffer
[in] | ch |
|
Definition at line 544 of file gpib.c.
Referenced by GPIB_COMMANDS(), and gpib_read_str().
void gpib_user_task | ( | ) |
user task called in GPIB read/write byte functions
user task called in GPIB read/write byte functions
====================================== ======================================
Definition at line 236 of file main.c.
Referenced by gpib_read_byte(), and gpib_write_byte().
uint16_t gpib_write_byte | ( | uint16_t | ch | ) |
Send 1 byte and control line states to GPIB BUS.
[out] | ch | ( Data or Command ) and control flags
|
ALL devices are ready
@release BUS
Definition at line 655 of file gpib.c.
Referenced by gpib_write_str().
int gpib_write_str | ( | uint8_t * | buf, |
int | size, | ||
uint16_t * | status | ||
) |
Send string to GPIB BUS - controlled by status flags.
[in] | buf | Binary gpib string to send |
[in] | size | Size of string |
[in] | status | User status flags that control the sending process. |
Definition at line 1396 of file gpib.c.
Referenced by Send_Identify(), SS80_describe(), SS80_error_return(), SS80_locate_and_read(), SS80_Report(), and SS80_send_status().
uint16_t current |
Definition at line 97 of file gpib.c.
Referenced by clock_elapsed_end(), gpib_read_byte(), and gpib_state_init().
uint8_t gpib_iobuff[GPIB_IOBUFF_LEN] |
common IO buffer for gpib_read_str() and gpib_write_str()
Definition at line 77 of file gpib.c.
Referenced by SS80_Command_State(), SS80_locate_and_read(), SS80_locate_and_write(), and SS80_Transparent_State().
gpib_token_t gpib_tokens[] |
Definition at line 109 of file gpib.c.
Referenced by gpib_trace_display().
uint16_t gpib_unread_data |
gpib_unread() data
Definition at line 82 of file gpib.c.
Referenced by gpib_read_byte(), and gpib_unread().
uint8_t gpib_unread_f = 0 |
gpib_unread() flag
Definition at line 80 of file gpib.c.
Referenced by gpib_bus_init(), gpib_read_byte(), and gpib_unread().
uint16_t lastcmd |
gpib current and last command
Definition at line 97 of file gpib.c.
Referenced by GPIB_LISTEN(), gpib_read_byte(), gpib_state_init(), and gpib_task().
uint8_t listening |
gpib listen address
Definition at line 90 of file gpib.c.
Referenced by GPIB(), GPIB_COMMANDS(), GPIB_LISTEN(), GPIB_SECONDARY_ADDRESS(), gpib_state_init(), GPIB_TALK(), gpib_task(), PRINTER_COMMANDS(), and SS80_COMMANDS().
uint8_t listening_last |
gpib last listen address
Definition at line 92 of file gpib.c.
Referenced by GPIB_LISTEN(), gpib_state_init(), and listen_cleanup().
uint8_t secondary |
gpib secondary
Definition at line 100 of file gpib.c.
Referenced by GPIB_COMMANDS(), gpib_state_init(), and gpib_task().
uint8_t spoll |
gpib serial poll status
Definition at line 95 of file gpib.c.
Referenced by GPIB(), gpib_state_init(), and GPIB_TALK().
uint8_t talking |
gpib talk address
GPIB BUS states.
Definition at line 85 of file gpib.c.
Referenced by GPIB(), GPIB_COMMANDS(), GPIB_LISTEN(), GPIB_SECONDARY_ADDRESS(), gpib_state_init(), GPIB_TALK(), PRINTER_COMMANDS(), and SS80_COMMANDS().
uint8_t talking_last |
gpib last talk address
Definition at line 87 of file gpib.c.
Referenced by gpib_state_init(), and GPIB_TALK().