HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
drive definitions for HP85 disk emulator project for AVR. More...
#include "user_config.h"
#include <stdint.h>
#include "defines.h"
#include "drives.h"
#include "gpib_hal.h"
#include "gpib.h"
#include "gpib_task.h"
#include "amigo.h"
#include "ss80.h"
#include <time.h>
#include "lifutils.h"
#include "debug.h"
Go to the source code of this file.
Macros | |
#define | MAX_STACK 5 |
Config Parser Stack. More... | |
Functions | |
void | print_var_P (__memx const char *str, uint32_t val) |
Display Configuration File variable. More... | |
void | print_str_P (__memx const char *str, char *arg) |
Display Configuration File string. More... | |
int8_t | tok_index (char *str) |
return the tokens index of the matching string More... | |
char * | tok_name (uint8_t tok) |
return string of matching token More... | |
void | print_tok_val (uint8_t tok, uint8_t spaces, uint32_t val) |
Display Configuration File variable. More... | |
void | print_tok_str (uint8_t tok, uint8_t spaces, char *str) |
Display Configuration File variable. More... | |
void | print_tok (uint8_t tok, uint8_t spaces) |
Display Configuration File variable. More... | |
int | Read_Config (char *name) |
Read and parse a config file using POSIX functions Set all drive parameters and debuglevel. More... | |
void | display_Addresses (int verbose) |
Display Configuration device address saummary. More... | |
void | display_Config (int verbose) |
Display current Configuration File values. More... | |
int8_t | find_type (int type) |
Seach Devices[] for ANY definitions of a disk type. More... | |
int8_t | count_drive_types (uint8_t type) |
Count number of devices of a sertain type. More... | |
char * | type_to_str (int type) |
Convert a disk type into a string. More... | |
char * | base_to_str (int base) |
Convert base address into a string identifier. More... | |
int8_t | find_free () |
Find first free Devices[] slot. More... | |
int8_t | find_device (int type, int address, int base) |
Find a device with matching type AND address. More... | |
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 do not display state changes here. Other code displays the active state. More... | |
void | SS80_Set_Defaults (int8_t index) |
Set Default Values for a new SS80 Device IF defaults have been defined Most values in the CONTROLER and UNIT are defaults that should not need to be specified Note all of the values are zeroed on allocation including strings. More... | |
void | free_device (int8_t index) |
Free a Device structure for a disk or printer. More... | |
int8_t | alloc_device (int type) |
Allocate a Device structure for a disk or printer. More... | |
void | init_Devices () |
Init Config Parser Stack Called only durring power up so we do not have to free memory. More... | |
int | push_state (int state) |
Push Parser State. More... | |
int | pop_state () |
Pop Parser State. More... | |
bool | assign_value (char *str, uint32_t minval, uint32_t maxval, uint32_t *val) |
assigned a value More... | |
void | set_Config_Defaults () |
Set Defaults for any missing disk or printer devices These are only used if the Config file omits them or is empty. More... | |
int8_t | hpdir_set_device (int8_t index) |
Set Device parameters from hpdir information. More... | |
int8_t | hpdir_set_parameters (int8_t index, char *model) |
Lookup model in and set drive parameters if found. More... | |
int8_t | verify_device (int8_t index) |
Verify a device and delete it is there are any errors. More... | |
void | verify_devices () |
Post process and Verify all devices. More... | |
void | format_drives () |
Format devices that have no image file. More... | |
void | drives_help (int8_t full) |
Help Menu for drives and configuration help See: int drives_tests(char *str) More... | |
void | mount_usage () |
int | drives_tests (int argc, char *argv[]) |
GPIB user tests User invoked GPIB functions and tasks. More... | |
int8_t | index_address (int8_t address) |
return index matching address More... | |
int8_t | test_address (int8_t address) |
test if address is in use More... | |
int8_t | index_ppr (int8_t ppr) |
return index matching ppr More... | |
int8_t | test_ppr (int8_t ppr) |
test if PPR is in use More... | |
int8_t | umount (int argc, char *argv[]) |
umount disks - testing More... | |
int8_t | mount (int argc, char *argv[]) |
mount disks - testing More... | |
void | display_mount (int8_t index) |
void | display_mounts () |
Variables | |
hpdir_t | hpdir |
hpdir.ini file processing More... | |
static int | stack_ind = 0 |
static int | stack_p [MAX_STACK] |
DeviceType | Devices [MAX_DEVICES] |
PRINTERDeviceType * | PRINTERp = NULL |
Active Printer Device. More... | |
SS80DiskType * | SS80p = NULL |
Active SS80 Device. More... | |
SS80StateType * | SS80s = NULL |
token_t | tokens [] |
int | lines = 0 |
Config file line number. More... | |
drive definitions for HP85 disk emulator project for AVR.
Definition in file drives.c.
int8_t alloc_device | ( | int | type | ) |
Allocate a Device structure for a disk or printer.
type | disk type |
Definition at line 1269 of file drives.c.
Referenced by mount(), and Read_Config().
bool assign_value | ( | char * | str, |
uint32_t | minval, | ||
uint32_t | maxval, | ||
uint32_t * | val | ||
) |
assigned a value
===============================================
[in] | str | string to examine |
[in] | minval | minimum value |
[in] | maxval | maximum value |
[in] | *val | value to set |
char* base_to_str | ( | int | base | ) |
int8_t count_drive_types | ( | uint8_t | type | ) |
void display_Addresses | ( | int | verbose | ) |
Display Configuration device address saummary.
===============================================
Definition at line 778 of file drives.c.
Referenced by drives_tests(), and main().
void display_Config | ( | int | verbose | ) |
Display current Configuration File values.
===============================================
Active Printer Device
Active SS80 Device
Definition at line 849 of file drives.c.
Referenced by drives_tests().
void display_mount | ( | int8_t | index | ) |
Active Printer Device
Active SS80 Device
Definition at line 2064 of file drives.c.
Referenced by display_mounts(), and verify_device().
void drives_help | ( | int8_t | full | ) |
Help Menu for drives and configuration help See: int drives_tests(char *str)
Definition at line 1760 of file drives.c.
Referenced by drives_tests(), help(), and mount_usage().
int drives_tests | ( | int | argc, |
char * | argv[] | ||
) |
GPIB user tests User invoked GPIB functions and tasks.
Definition at line 1798 of file drives.c.
Referenced by user_task().
int8_t find_device | ( | int | type, |
int | address, | ||
int | base | ||
) |
Find a device with matching type AND address.
type | disk type |
address | GPIB device address 0 based |
base | BASE_MLA,BASE_MTA or BASE_MSA address range |
Make sure address is in expected range
convert to device address
search for device address
Definition at line 1063 of file drives.c.
Referenced by listen_cleanup(), PRINTER_is_MLA(), PRINTER_is_MSA(), PRINTER_is_MTA(), SS80_is_MLA(), SS80_is_MSA(), and SS80_is_MTA().
int8_t find_free | ( | ) |
Find first free Devices[] slot.
Definition at line 1052 of file drives.c.
Referenced by alloc_device(), and set_Config_Defaults().
int8_t find_type | ( | int | type | ) |
Seach Devices[] for ANY definitions of a disk type.
type | disk type like SS80_TYPE |
Definition at line 991 of file drives.c.
Referenced by find_free(), set_Config_Defaults(), and SS80_Set_Defaults().
void format_drives | ( | ) |
void free_device | ( | int8_t | index | ) |
Free a Device structure for a disk or printer.
type | disk index |
Definition at line 1220 of file drives.c.
Referenced by umount(), and verify_device().
int8_t hpdir_set_device | ( | int8_t | index | ) |
Set Device parameters from hpdir information.
===============================================
[in] | index | device index |
Definition at line 1495 of file drives.c.
Referenced by hpdir_set_parameters().
int8_t hpdir_set_parameters | ( | int8_t | index, |
char * | model | ||
) |
Lookup model in and set drive parameters if found.
===============================================
[in] | index | Devices index |
[in] | model | model string |
Definition at line 1541 of file drives.c.
Referenced by mount(), and Read_Config().
int8_t index_address | ( | int8_t | address | ) |
return index matching address
Definition at line 1862 of file drives.c.
Referenced by test_address(), and umount().
int8_t index_ppr | ( | int8_t | ppr | ) |
return index matching ppr
Definition at line 1892 of file drives.c.
Referenced by test_ppr().
void init_Devices | ( | ) |
Init Config Parser Stack Called only durring power up so we do not have to free memory.
Definition at line 1325 of file drives.c.
Referenced by Read_Config().
int8_t mount | ( | int | argc, |
char * | argv[] | ||
) |
mount disks - testing
===============================================
Active Printer Device
Active SS80 Device
Definition at line 1948 of file drives.c.
Referenced by drives_tests().
int pop_state | ( | ) |
Pop Parser State.
===============================================
Definition at line 1358 of file drives.c.
Referenced by Read_Config().
void print_str_P | ( | __memx const char * | str, |
char * | arg | ||
) |
void print_tok | ( | uint8_t | tok, |
uint8_t | spaces | ||
) |
Display Configuration File variable.
===============================================
str | title |
spaces | indent |
Definition at line 321 of file drives.c.
Referenced by display_Config().
void print_tok_str | ( | uint8_t | tok, |
uint8_t | spaces, | ||
char * | str | ||
) |
Display Configuration File variable.
===============================================
tok | token |
spaces | indent |
str | string |
Definition at line 305 of file drives.c.
Referenced by display_Addresses(), and display_Config().
void print_tok_val | ( | uint8_t | tok, |
uint8_t | spaces, | ||
uint32_t | val | ||
) |
Display Configuration File variable.
===============================================
tok | token |
spaces | indent |
val | variable value |
Definition at line 290 of file drives.c.
Referenced by display_Addresses(), and display_Config().
void print_var_P | ( | __memx const char * | str, |
uint32_t | val | ||
) |
int push_state | ( | int | state | ) |
Push Parser State.
===============================================
state | parser state |
Definition at line 1345 of file drives.c.
Referenced by Read_Config().
int Read_Config | ( | char * | name | ) |
Read and parse a config file using POSIX functions Set all drive parameters and debuglevel.
===============================================
name | config file name to process |
Printer Device
SS80 Device
Definition at line 336 of file drives.c.
Referenced by gpib_file_init().
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 do not display state changes here. Other code displays the active state.
index | Devices[] index |
We also check for -1 So the result of find_device() can be used without additional tests
Definition at line 1093 of file drives.c.
Referenced by PRINTER_is_MLA(), PRINTER_is_MSA(), PRINTER_is_MTA(), SS80_init(), SS80_is_MLA(), SS80_is_MSA(), and SS80_is_MTA().
void set_Config_Defaults | ( | ) |
Set Defaults for any missing disk or printer devices These are only used if the Config file omits them or is empty.
===============================================
Definition at line 1427 of file drives.c.
Referenced by gpib_file_init(), and Read_Config().
void SS80_Set_Defaults | ( | int8_t | index | ) |
Set Default Values for a new SS80 Device IF defaults have been defined Most values in the CONTROLER and UNIT are defaults that should not need to be specified Note all of the values are zeroed on allocation including strings.
Definition at line 1177 of file drives.c.
Referenced by alloc_device().
int8_t test_address | ( | int8_t | address | ) |
int8_t test_ppr | ( | int8_t | ppr | ) |
int8_t tok_index | ( | char * | str | ) |
return the tokens index of the matching string
===============================================
str | string tro match |
Definition at line 256 of file drives.c.
Referenced by Read_Config().
char* tok_name | ( | uint8_t | tok | ) |
return string of matching token
===============================================
tok | token |
Definition at line 272 of file drives.c.
Referenced by print_tok(), print_tok_str(), and print_tok_val().
char* type_to_str | ( | int | type | ) |
Convert a disk type into a string.
type | disk type like SS80_TYPE |
Definition at line 1021 of file drives.c.
Referenced by alloc_device(), and set_active_device().
int8_t umount | ( | int | argc, |
char * | argv[] | ||
) |
umount disks - testing
===============================================
Definition at line 1922 of file drives.c.
Referenced by drives_tests().
int8_t verify_device | ( | int8_t | index | ) |
Verify a device and delete it is there are any errors.
===============================================
Active SS80 Device
Definition at line 1552 of file drives.c.
Referenced by mount(), and verify_devices().
void verify_devices | ( | ) |
Post process and Verify all devices.
===============================================
Definition at line 1655 of file drives.c.
Referenced by Read_Config().
DeviceType Devices[MAX_DEVICES] |
Definition at line 32 of file drives.c.
Referenced by alloc_device(), count_drive_types(), display_Addresses(), display_Config(), display_mount(), find_device(), find_type(), format_drives(), free_device(), hpdir_set_device(), index_address(), index_ppr(), init_Devices(), mount(), Read_Config(), set_active_device(), set_Config_Defaults(), SS80_init(), SS80_Set_Defaults(), and verify_device().
hpdir_t hpdir |
hpdir.ini file processing
Definition at line 48 of file drives.c.
Referenced by hpdir_set_device(), and mount().
int lines = 0 |
Config file line number.
Definition at line 1368 of file drives.c.
Referenced by assign_value(), MatRead(), and Read_Config().
PRINTERDeviceType* PRINTERp = NULL |
Active Printer Device.
Definition at line 35 of file drives.c.
Referenced by display_Config(), display_mount(), mount(), Read_Config(), and set_active_device().
SS80DiskType* SS80p = NULL |
Active SS80 Device.
Definition at line 38 of file drives.c.
Referenced by display_Addresses(), display_Config(), display_mount(), format_drives(), free_device(), GPIB_SECONDARY_ADDRESS(), hpdir_set_device(), mount(), Read_Config(), set_active_device(), SS80_Amigo_Clear(), SS80_Blocks_to_Bytes(), SS80_Bytes_to_Blocks(), SS80_Cancel(), SS80_Channel_Independent_Clear(), SS80_cmd_seek(), SS80_Command_State(), SS80_COMMANDS(), SS80_Execute_State(), SS80_init(), SS80_locate_and_read(), SS80_locate_and_write(), SS80_Selected_Device_Clear(), SS80_Set_Defaults(), SS80_Transparent_State(), SS80_Universal_Device_Clear(), SS80ControllerPack(), SS80UnitPack(), SS80VolumePack(), and verify_device().
SS80StateType* SS80s = NULL |
Definition at line 39 of file drives.c.
Referenced by Clear_Common(), GPIB(), set_active_device(), SS80_Cancel(), SS80_Check_Unit(), SS80_Check_Volume(), SS80_cmd_seek(), SS80_Command_State(), SS80_error_return(), SS80_Execute_State(), SS80_increment(), SS80_init(), SS80_locate_and_read(), SS80_locate_and_write(), SS80_Report(), SS80_send_status(), and SS80_Transparent_State().
|
static |
Definition at line 29 of file drives.c.
Referenced by init_Devices(), pop_state(), and push_state().
|
static |
Definition at line 30 of file drives.c.
Referenced by pop_state(), and push_state().
token_t tokens[] |
Definition at line 169 of file drives.c.
Referenced by Read_Config(), tok_index(), and tok_name().