HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
High level GPIB command handler for HP85 disk emulator project for AVR. More...
Go to the source code of this file.
Functions | |
void | gpib_file_init (void) |
Read Configuration File. More... | |
void | gpib_log (char *str) |
Log GPIB transactions. More... | |
int | SS80_is_MLA (int address) |
Check if SS80 listening address. More... | |
int | SS80_is_MTA (int address) |
Check if SS80 talking address. More... | |
int | SS80_is_MSA (int address) |
Check if SS80 secondary address. More... | |
int | AMIGO_is_MLA (int address) |
int | AMIGO_is_MTA (int address) |
int | AMIGO_is_MSA (int address) |
int | PRINTER_is_MLA (int address) |
Check if PRINTER listening address. More... | |
int | PRINTER_is_MTA (int address) |
Check if PRINTER talking address. More... | |
int | PRINTER_is_MSA (int address) |
Check if PRINTER secondary address. More... | |
uint16_t | gpib_trace_read_byte (void) |
void | gpib_trace_task (char *name, int detail) |
Trace GPIB activity passively - saving to a log file. More... | |
uint16_t | gpib_error_test (uint16_t val) |
Check for GPIB errors and timeouts. More... | |
void | gpib_init_devices (void) |
Initialize ALL emulated devices SS80, AMIGO and printer. More... | |
uint16_t | GPIB_COMMANDS (uint16_t val, uint8_t unread) |
Process all GPIB Secondary Commands. More... | |
void | gpib_task (void) |
Top most main GPIB device emulator task. This is main() for GPIB state machine loop All tasks are dispatched from here. More... | |
int | Send_Identify (uint8_t ch, uint16_t ID) |
Send drive identify- 2 bytes. More... | |
int | GPIB (uint8_t ch) |
Main GPIB command handler Commands 0x00 .. 0x1f. More... | |
int | GPIB_LISTEN (uint8_t ch) |
Process all GPIB Listen commands. More... | |
int | GPIB_TALK (uint8_t ch) |
Process all GPIB Talk commands. More... | |
int | GPIB_SECONDARY_ADDRESS (uint8_t ch) |
Process all GPIB Secondary Addresses. More... | |
void | listen_cleanup (void) |
Called when the listen address changes. More... | |
void | talk_cleanup (void) |
Called when the GPIB talk address changes. More... | |
void | DumpData (unsigned char *ptr, int length) |
HEX and ASCII dump of string in human-readable format. More... | |
High level GPIB command handler for HP85 disk emulator project for AVR.
Definition in file gpib_task.h.
int AMIGO_is_MLA | ( | int | address | ) |
Referenced by GPIB(), GPIB_COMMANDS(), and GPIB_LISTEN().
int AMIGO_is_MSA | ( | int | address | ) |
Referenced by GPIB_SECONDARY_ADDRESS().
int AMIGO_is_MTA | ( | int | address | ) |
Referenced by GPIB_COMMANDS(), and GPIB_TALK().
void DumpData | ( | unsigned char * | ptr, |
int | length | ||
) |
HEX and ASCII dump of string in human-readable format.
[in] | ptr | data |
[in] | length | length of data string |
Definition at line 979 of file gpib_task.c.
int GPIB | ( | uint8_t | ch | ) |
Main GPIB command handler Commands 0x00 .. 0x1f.
[in] | ch | 8 bit command |
Parallel Poll Configure TODO
Parallel Poll Unconfigure TODO
Selected Device Clear
Note: Suposed to be unsupported in SS80 - pg 4-2 CS80 3-4
(Universal) Device Clear
Definition at line 619 of file gpib_task.c.
Referenced by gpib_task().
uint16_t GPIB_COMMANDS | ( | uint16_t | val, |
uint8_t | unread | ||
) |
Process all GPIB Secondary Commands.
[in] | val | GPIB secondary command and control flags. |
[in] | unread | if 1 unread val prior to emulator call. |
talking ?
listening ?
Definition at line 371 of file gpib_task.c.
Referenced by gpib_task().
uint16_t gpib_error_test | ( | uint16_t | val | ) |
Check for GPIB errors and timeouts.
val | command or data byte and control or error flags.
|
IFC is and important state so display it for most messages
Bus Clear, reseat all states, etc
Definition at line 277 of file gpib_task.c.
Referenced by gpib_task().
void gpib_file_init | ( | void | ) |
Read Configuration File.
set any compile time defaults - but only those NOT already set by the config file
Definition at line 39 of file gpib_task.c.
Referenced by main().
void gpib_init_devices | ( | void | ) |
Initialize ALL emulated devices SS80, AMIGO and printer.
Definition at line 340 of file gpib_task.c.
Referenced by gpib_error_test(), gpib_task(), gpib_trace_task(), and user_task().
int GPIB_LISTEN | ( | uint8_t | ch | ) |
Process all GPIB Listen commands.
[in] | ch | 8 bit listen command |
NOTE: we must track the "addressed state" of each device so we can determine its state - ie: command vs Secondary states Universal Unlisten
NULL creates a file named based on date and time
Definition at line 734 of file gpib_task.c.
Referenced by gpib_task().
void gpib_log | ( | char * | str | ) |
Log GPIB transactions.
str | message to log |
Definition at line 63 of file gpib_task.c.
int GPIB_SECONDARY_ADDRESS | ( | uint8_t | ch | ) |
Process all GPIB Secondary Addresses.
[in] | ch | 8 bit secondary address. |
NOTE: We now know that ch >= 0x60 && ch <= 0x7f Previous tests ensure this fact is true and because CMD_MASK == 0x7f
note: any errors will reset lastcmd Universal Talk mode Treat this as a Secondary Address ? SS80 Ident 4-31 If we have our secondary address then send IDENT
ch = secondary address
Definition at line 888 of file gpib_task.c.
Referenced by gpib_task().
int GPIB_TALK | ( | uint8_t | ch | ) |
Process all GPIB Talk commands.
[in] | ch | 8 bit talk command |
NOTE: we must track the "addressed state" of each device so we can determine its state - ie: command vs Secondary states save talking state
Universal Untalk
Definition at line 809 of file gpib_task.c.
Referenced by gpib_task().
void gpib_task | ( | void | ) |
Top most main GPIB device emulator task. This is main() for GPIB state machine loop All tasks are dispatched from here.
GPIB commands with ATN set (COMMANDS)
GPIB listen
GPIB talk
GPIB secondary Note: We know ch >= 0x60 && ch <= 0x7f because of previous tests
We have to keep track of secondary address that may happen out of order with older AMIGO protocol this method works for SS80 as well
GPIB_COMMANDS does most of the work
GPIB commands without ATN set (DATA)
GPIB_COMMANDS does most of the work
Definition at line 456 of file gpib_task.c.
Referenced by gpib_tests(), and user_task().
uint16_t gpib_trace_read_byte | ( | void | ) |
void gpib_trace_task | ( | char * | name, |
int | detail | ||
) |
Trace GPIB activity passively - saving to a log file.
[in] | name | file name to save to |
[in] | detail | if non-zero do full handshake trace |
name | File name to save log file to. |
Definition at line 200 of file gpib_task.c.
Referenced by gpib_tests().
void listen_cleanup | ( | ) |
Called when the listen address changes.
Definition at line 940 of file gpib_task.c.
Referenced by GPIB_LISTEN(), and gpib_state_init().
int PRINTER_is_MLA | ( | int | address | ) |
Check if PRINTER listening address.
Definition at line 153 of file gpib_task.c.
Referenced by GPIB_COMMANDS(), GPIB_LISTEN(), GPIB_TALK(), gpib_task(), and PRINTER_COMMANDS().
int PRINTER_is_MSA | ( | int | address | ) |
Check if PRINTER secondary address.
Definition at line 179 of file gpib_task.c.
int PRINTER_is_MTA | ( | int | address | ) |
Check if PRINTER talking address.
Definition at line 166 of file gpib_task.c.
Referenced by GPIB_COMMANDS(), GPIB_TALK(), and PRINTER_COMMANDS().
int Send_Identify | ( | uint8_t | ch, |
uint16_t | ID | ||
) |
Send drive identify- 2 bytes.
[in] | ch | channel |
Definition at line 586 of file gpib_task.c.
Referenced by GPIB_SECONDARY_ADDRESS().
int SS80_is_MLA | ( | int | address | ) |
Check if SS80 listening address.
Definition at line 74 of file gpib_task.c.
Referenced by GPIB(), GPIB_COMMANDS(), GPIB_LISTEN(), and SS80_COMMANDS().
int SS80_is_MSA | ( | int | address | ) |
Check if SS80 secondary address.
Definition at line 100 of file gpib_task.c.
Referenced by GPIB_SECONDARY_ADDRESS().
int SS80_is_MTA | ( | int | address | ) |
Check if SS80 talking address.
Definition at line 87 of file gpib_task.c.
Referenced by GPIB(), GPIB_COMMANDS(), GPIB_TALK(), and SS80_COMMANDS().
void talk_cleanup | ( | ) |
Called when the GPIB talk address changes.
Definition at line 965 of file gpib_task.c.
Referenced by gpib_state_init(), and GPIB_TALK().