HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
drives.h
Go to the documentation of this file.
1 
16 #ifndef _DRIVES_H
17 #define _DRIVES_H
18 /*-------------------------------------------------------------------------
19  defines.h - global defines
20 
21  (c) 2014 Anders Gustafsson <anders.gustafsson@pedago.fi>
22 
23 -------------------------------------------------------------------------*/
24 
25 #include "user_config.h"
26 #include "posix.h"
27 #include "drives_sup.h"
28 
30 #ifdef AMIGO
31 #define HP9121D //< HP9121 dual 270K AMIGO floppy drive
32 #endif
33 #define HP9134L //< HP9134L 40M SS/80 Winchester drive
34 
35 // =============================================
37 #define MAX_DEVICES 12
38 
39 //@brief Drive index, Address, PPR and file name for emulated drive
40 typedef struct
41 {
42  uint8_t ADDRESS; //< GPIB Address
43  uint8_t PPR; //< Parallel Poll Response Bit
45  char *NAME; // File name of emulated image
46  char *model; // Model name of emulated device
47 } HeaderType;
48 
49 //@brief Identify Bytes for Drives
50 typedef struct
51 {
52  uint16_t ID; //< Identify, For 9122 I1=02, I2=22H
53 } ConfigType;
54 
55 // =============================================
57 typedef struct
58 {
59  uint8_t state;
61  uint8_t unitNO;
63  uint8_t volNO;
64  uint8_t cyl;
65  uint8_t head;
66  uint8_t sector;
67  uint8_t dsj;
68  int Errors;
70  uint8_t status[4];
72  uint8_t logical_address[4];
74 
75 // =============================================
77 typedef struct
78 {
81 
82 // =============================================
84 typedef struct
85 {
86  uint32_t count; // total bytes
87  int16_t ind; // buffer cache index
88  int16_t size; // buffer size
89  uint8_t error; // error status
90  FILE *fp;
91  char *buf;
93 
94 // =============================================
95 typedef struct
96 {
99  int16_t HEADS;
100  int16_t CYLINDERS;
102 
104 typedef struct
105 {
109 } AMIGODiskType;
110 
111 // =============================================
113 typedef struct
114 {
115 /*
116  When packed this is 5 bytes
117  CONTROLLER DESCRIPTION
118  C1-C2 C1 = MSB, C2 = LSB
119  Installed unit byte; 1 bit for each unit.
120  Unit 15 is always present
121  C3-C4 GPIB data transfer rate in kB/s on the bus
122  C5 Controller Type
123  0 = CS/80 integrated single unit controller.
124  1 = CS/SO integrated multi-unit controller.
125  2 = CS/SO integrated multi-port controller.
126 4 = SS/SO integrated single unit controller.
127 5 = SS/80 integrated multi-unit controller.
128 6 SS/80 integrated multi-port controller.
129 
130 */
131  uint16_t UNITS_INSTALLED;
132  uint16_t TRANSFER_RATE;
133  uint8_t TYPE;
135 
137 typedef struct //< Unit description, 19 bytes
138 {
139 /*
140  When packed this is 19 bytes
141  UNIT DESCRIPTION
142  U1 Generic Unit Type, 0 = fixed, 1 - floppy, 2 = tape
143  OR with 128 implies dumb can not detect media change
144  U2-U4 Device number in BCD
145  XX XX XY, X = BCD Unit number, Y = option number
146  U5-U6 Number of bytes per block, MSB-LSB
147  U7 Number of blocks which can be buffered
148  U8 0 for SS80, Recommended burst size
149  U9-U10 Block time in microseconds
150 U11-U12 Continuous average transfer rate for long transfers kB/s
151 U13-U14 Optimal retry time in 1O's of milliseconds
152 U15-U16 Access time parameter in 1O's of milliseconds
153 U17 Maximum Interleave factor
154 U18 Fixed volume byte; one bit per volume (set if fixed);
155 U19 Removable volume byte; one bit per volume (set if removable);
156 */
157  uint8_t UNIT_TYPE;
158  uint32_t DEVICE_NUMBER;
159  uint16_t BYTES_PER_BLOCK;
161  uint8_t BURST_SIZE;
162  uint16_t BLOCK_TIME;
165  uint16_t ACCESS_TIME;
167  uint8_t FIXED_VOLUMES;
169 } SS80UnitType;
170 
172 typedef struct
173 {
174 /*
175  When packed this is 13 bytes
176  VOLUME DESCRIPTION
177  SS80 units use single vecor mode so MAX CYLINDER,HEAD and SECTOR are not used
178  V1-V3 Maximum value of cylinder address vector.
179  V4 Maximum value of the head address vector.
180  V5-V6 Maximum value of sector address vector.
181  For devices that use bot the following expression must be true
182  (V1,V2,V3+1)(V4+1)(V5,V6+1) = V7,V8,V9,V10,V11,V12+1
183  V7-V12 Maximum value of single vector address in blocks.
184  V13 Current Interleave Factor
185 */
186  uint32_t MAX_CYLINDER;
187  uint8_t MAX_HEAD;
188  uint16_t MAX_SECTOR;
190  uint8_t INTERLEAVE;
192 
194 typedef struct
195 {
201 } SS80DiskType;
202 // =============================================
203 
205 typedef struct
206 {
208  int estate;
210  uint8_t qstat;
212  int Errors; //< Error byte
214  BYTE unitNO; //< Unit Number - we only do 1
216  BYTE volNO; //< Volume Number - we only do 1
218  uint32_t AddressBlocks;
220  uint32_t Length;
221 } SS80StateType;
222 
223 // =============================================
225 {
242 };
243 
244 // =============================================
247 {
253 };
254 
256 typedef struct
257 {
258  uint8_t TYPE; // TYPE SS80,AMIGO or PRINTER TYPE
259  uint8_t ADDRESS; // ADDRESS
260  uint8_t PPR; // PPR
261  uint32_t BLOCKS; // Disk Blocks
262  void *dev; // Disk or Printer Structure
263  void *state; // Disk or Printer State Structure
264 } DeviceType;
265 
266 // =============================================
268 #define print_var(format, args...) print_var_P(PSTR(format), ##args)
269 #define print_str(format, args...) print_str_P(PSTR(format), ##args)
271 
272 extern SS80DiskType *SS80p;
273 extern SS80StateType *SS80s;
274 #ifdef AMIGO
275 extern AMIGODiskType *AMIGOp;
276 extern AMIGOStateType *AMIGOs;
277 #endif
280 
281 typedef union
282 {
283  uint8_t b;
284  uint16_t w;
285  uint32_t l;
286 } val_t;
287 
288 typedef struct
289 {
290  char *name;
291  int tok;
292 } token_t;
293 
294 enum
295 {
340 };
341 
342 // =============================================
343 
344 
345 
346 
347 /* drives.c */
348 void print_var_P ( __memx const char *str , uint32_t val );
349 void print_str_P ( __memx const char *str , char *arg );
350 int8_t tok_index ( char *str );
351 char *tok_name ( uint8_t tok );
352 void print_tok_val ( uint8_t tok , uint8_t spaces , uint32_t val );
353 void print_tok_str ( uint8_t tok , uint8_t spaces , char *str );
354 void print_tok ( uint8_t tok , uint8_t spaces );
355 int Read_Config ( char *name );
356 void display_Addresses ( int verbose );
357 void display_Config ( int verbose );
358 int8_t find_type ( int type );
359 int8_t count_drive_types ( uint8_t type );
360 char *type_to_str ( int type );
361 char *base_to_str ( int base );
362 int8_t find_free ( void );
363 int8_t find_device ( int type , int address , int base );
364 int8_t set_active_device ( int8_t index );
365 void SS80_Set_Defaults ( int8_t index );
366 void free_device ( int8_t index );
367 int8_t alloc_device ( int type );
368 void init_Devices ( void );
369 int push_state ( int state );
370 int pop_state ( void );
371 bool assign_value ( char *str , uint32_t minval , uint32_t maxval , uint32_t *val );
372 void set_Config_Defaults ( void );
373 int8_t hpdir_set_device ( int8_t index );
374 int8_t hpdir_set_parameters ( int8_t index , char *model );
375 int8_t verify_device ( int8_t index );
376 void verify_devices ( void );
377 void format_drives ( void );
378 void drives_help ( int8_t full );
379 void mount_usage ( void );
380 int drives_tests ( int argc , char *argv []);
381 int8_t index_address ( int8_t address );
382 int8_t test_address ( int8_t address );
383 int8_t index_ppr ( int8_t ppr );
384 int8_t test_ppr ( int8_t ppr );
385 int8_t umount ( int argc , char *argv []);
386 int8_t mount ( int argc , char *argv []);
387 void display_mount ( int8_t index );
388 void display_mounts ( void );
389 
390 
391 #endif // _DRIVES_H
SS80StateType::Errors
int Errors
Errors.
Definition: drives.h:212
SS80VolumeType::MAX_CYLINDER
uint32_t MAX_CYLINDER
Definition: drives.h:186
alloc_device
int8_t alloc_device(int type)
Allocate a Device structure for a disk or printer.
Definition: drives.c:1269
TOK_INTERLEAVE
@ TOK_INTERLEAVE
Definition: drives.h:320
AMIGO_CONFIG
@ AMIGO_CONFIG
Definition: drives.h:238
print_tok_val
void print_tok_val(uint8_t tok, uint8_t spaces, uint32_t val)
Display Configuration File variable.
Definition: drives.c:290
TOK_SECTORS_PER_TRACK
@ TOK_SECTORS_PER_TRACK
Definition: drives.h:330
TOK_REMOVABLE_VOLUMES
@ TOK_REMOVABLE_VOLUMES
Definition: drives.h:329
TOK_ACCESS_TIME
@ TOK_ACCESS_TIME
Definition: drives.h:296
print_tok
void print_tok(uint8_t tok, uint8_t spaces)
Display Configuration File variable.
Definition: drives.c:321
AMIGOStateType::unitNO
uint8_t unitNO
AMIGO disk unit number.
Definition: drives.h:61
type_to_str
char * type_to_str(int type)
Convert a disk type into a string.
Definition: drives.c:1021
AMIGOStateType::dsj
uint8_t dsj
Definition: drives.h:67
SS80ControllerType::UNITS_INSTALLED
uint16_t UNITS_INSTALLED
Definition: drives.h:131
token_t
Definition: drives.h:288
AMIGO_GEOMETRY
@ AMIGO_GEOMETRY
Definition: drives.h:239
TOK_UNITS_INSTALLED
@ TOK_UNITS_INSTALLED
Definition: drives.h:336
HeaderType::PPR
uint8_t PPR
Definition: drives.h:43
SS80VolumeType::MAX_HEAD
uint8_t MAX_HEAD
Definition: drives.h:187
drives_help
void drives_help(int8_t full)
Help Menu for drives and configuration help See: int drives_tests(char *str)
Definition: drives.c:1760
PRINTERp
PRINTERDeviceType * PRINTERp
Active Printer Device.
Definition: drives.c:35
SS80_Set_Defaults
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 a...
Definition: drives.c:1177
PRINTER_TYPE
@ PRINTER_TYPE
Definition: drives.h:252
TOK_MAX_SECTOR
@ TOK_MAX_SECTOR
Definition: drives.h:325
token_t::tok
int tok
Definition: drives.h:291
TOK_END
@ TOK_END
Definition: drives.h:313
AMIGODiskType::GEOMETRY
AMIGOGeometryType GEOMETRY
Definition: drives.h:108
TOK_VOLUME
@ TOK_VOLUME
Definition: drives.h:338
test_ppr
int8_t test_ppr(int8_t ppr)
test if PPR is in use
Definition: drives.c:1905
hpdir_set_parameters
int8_t hpdir_set_parameters(int8_t index, char *model)
Lookup model in and set drive parameters if found.
Definition: drives.c:1541
verify_device
int8_t verify_device(int8_t index)
Verify a device and delete it is there are any errors.
Definition: drives.c:1552
PRINTERStateType::fp
FILE * fp
Definition: drives.h:90
SS80DiskType::VOLUME
SS80VolumeType VOLUME
Definition: drives.h:200
DeviceType::BLOCKS
uint32_t BLOCKS
Definition: drives.h:261
AMIGODiskType::HEADER
HeaderType HEADER
Definition: drives.h:106
DeviceType::TYPE
uint8_t TYPE
Definition: drives.h:258
BYTE
unsigned char BYTE
Definition: ff.h:54
set_active_device
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...
Definition: drives.c:1093
verify_devices
void verify_devices(void)
Post process and Verify all devices.
Definition: drives.c:1655
SS80StateType::volNO
BYTE volNO
SS80 Volume.
Definition: drives.h:216
SS80StateType
SS80 Emulated disk state information.
Definition: drives.h:205
SS80ControllerType::TYPE
uint8_t TYPE
Definition: drives.h:133
TOK_TRANSFER_RATE
@ TOK_TRANSFER_RATE
Definition: drives.h:333
SS80UnitType::MAXIMUM_INTERLEAVE
uint8_t MAXIMUM_INTERLEAVE
Definition: drives.h:166
MAX_DEVICES
#define MAX_DEVICES
Maximum number of emulated devices.
Definition: drives.h:37
AMIGOStateType::volNO
uint8_t volNO
AMIGO disk volume number.
Definition: drives.h:63
AMIGODiskType
AMIGO Disk structure - ID bytes and layout.
Definition: drives.h:104
AMIGO_HEADER
@ AMIGO_HEADER
Definition: drives.h:237
val_t::l
uint32_t l
Definition: drives.h:285
TOK_OPTIMAL_RETRY_TIME
@ TOK_OPTIMAL_RETRY_TIME
Definition: drives.h:326
TOK_ID
@ TOK_ID
Definition: drives.h:319
SS80UnitType
SS80 Unit.
Definition: drives.h:137
TOK_FIXED_VOLUMES
@ TOK_FIXED_VOLUMES
Definition: drives.h:315
TOK_CS80
@ TOK_CS80
Definition: drives.h:308
TOK_AMIGO
@ TOK_AMIGO
Definition: drives.h:298
display_mount
void display_mount(int8_t index)
Definition: drives.c:2064
TOK_MAX_CYLINDER
@ TOK_MAX_CYLINDER
Definition: drives.h:322
AMIGOGeometryType::SECTORS_PER_TRACK
int16_t SECTORS_PER_TRACK
Definition: drives.h:98
count_drive_types
int8_t count_drive_types(uint8_t type)
Count number of devices of a sertain type.
Definition: drives.c:1005
tok_name
char * tok_name(uint8_t tok)
return string of matching token
Definition: drives.c:272
PRINTERStateType::ind
int16_t ind
Definition: drives.h:87
init_Devices
void init_Devices(void)
Init Config Parser Stack Called only durring power up so we do not have to free memory.
Definition: drives.c:1325
SS80DiskType::HEADER
HeaderType HEADER
Definition: drives.h:196
index_address
int8_t index_address(int8_t address)
return index matching address
Definition: drives.c:1862
pop_state
int pop_state(void)
Pop Parser State.
Definition: drives.c:1358
display_Config
void display_Config(int verbose)
Display current Configuration File values.
Definition: drives.c:849
SS80ControllerType
SS80 Controller.
Definition: drives.h:113
drives_tests
int drives_tests(int argc, char *argv[])
GPIB user tests User invoked GPIB functions and tasks.
Definition: drives.c:1798
START_STATE
@ START_STATE
Definition: drives.h:226
AMIGODiskType::CONFIG
ConfigType CONFIG
Definition: drives.h:107
TOK_DEBUG
@ TOK_DEBUG
Definition: drives.h:310
Read_Config
int Read_Config(char *name)
Read and parse a config file using POSIX functions Set all drive parameters and debuglevel.
Definition: drives.c:336
SS80UnitType::BYTES_PER_BLOCK
uint16_t BYTES_PER_BLOCK
Definition: drives.h:159
TOK_GEOMETRY
@ TOK_GEOMETRY
Definition: drives.h:316
SS80_CONTROLLER
@ SS80_CONTROLLER
Definition: drives.h:230
AMIGOStateType::state
uint8_t state
Definition: drives.h:59
AMIGOGeometryType::CYLINDERS
int16_t CYLINDERS
Definition: drives.h:100
Devices
DeviceType Devices[MAX_DEVICES]
Definition: drives.c:32
DeviceType::state
void * state
Definition: drives.h:263
ConfigType
Definition: drives.h:50
SS80UnitType::OPTIMAL_RETRY_TIME
uint16_t OPTIMAL_RETRY_TIME
Definition: drives.h:164
assign_value
bool assign_value(char *str, uint32_t minval, uint32_t maxval, uint32_t *val)
assigned a value
Definition: drives.c:1380
SS80DiskType::CONTROLLER
SS80ControllerType CONTROLLER
Definition: drives.h:198
AMIGO_TYPE
@ AMIGO_TYPE
Definition: drives.h:249
SS80StateType::unitNO
BYTE unitNO
SS80 Unit.
Definition: drives.h:214
TOK_MAX_BLOCK_NUMBER
@ TOK_MAX_BLOCK_NUMBER
Definition: drives.h:321
print_var_P
void print_var_P(__memx const char *str, uint32_t val)
Display Configuration File variable.
Definition: drives.c:224
__file
FILE type structure.
Definition: posix.h:158
HeaderType::NAME
char * NAME
Maximun lengh of device file name.
Definition: drives.h:45
TOK_BYTES_PER_BLOCK
@ TOK_BYTES_PER_BLOCK
Definition: drives.h:303
SS80UnitType::REMOVABLE_VOLUMES
uint8_t REMOVABLE_VOLUMES
Definition: drives.h:168
SS80_CONFIG
@ SS80_CONFIG
Definition: drives.h:229
SS80_VOLUME
@ SS80_VOLUME
Definition: drives.h:232
TOK_CYLINDERS
@ TOK_CYLINDERS
Definition: drives.h:309
AMIGOGeometryType::HEADS
int16_t HEADS
Definition: drives.h:99
SS80VolumeType::MAX_BLOCK_NUMBER
uint32_t MAX_BLOCK_NUMBER
Definition: drives.h:189
TOK_BYTES_PER_SECTOR
@ TOK_BYTES_PER_SECTOR
Definition: drives.h:304
PRINTERDeviceType::HEADER
HeaderType HEADER
Definition: drives.h:79
TOK_FILE
@ TOK_FILE
Definition: drives.h:314
AMIGOStateType::head
uint8_t head
Definition: drives.h:65
SS80UnitType::BURST_SIZE
uint8_t BURST_SIZE
Definition: drives.h:161
drives_sup.h
base_to_str
char * base_to_str(int base)
Convert base address into a string identifier.
Definition: drives.c:1038
TOK_DEVICE_NUMBER
@ TOK_DEVICE_NUMBER
Definition: drives.h:311
SS80VolumeType
Volume Information Structure.
Definition: drives.h:172
TOK_DRIVE
@ TOK_DRIVE
Definition: drives.h:312
print_str_P
void print_str_P(__memx const char *str, char *arg)
Display Configuration File string.
Definition: drives.c:241
SS80DiskType::UNIT
SS80UnitType UNIT
Definition: drives.h:199
DeviceType::ADDRESS
uint8_t ADDRESS
Definition: drives.h:259
SS80_HEADER
@ SS80_HEADER
Definition: drives.h:228
AMIGOGeometryType::BYTES_PER_SECTOR
int16_t BYTES_PER_SECTOR
Definition: drives.h:97
val_t::w
uint16_t w
Definition: drives.h:284
SS80UnitType::BUFFERED_BLOCKS
uint8_t BUFFERED_BLOCKS
Definition: drives.h:160
TOK_PPR
@ TOK_PPR
Definition: drives.h:327
find_type
int8_t find_type(int type)
Seach Devices[] for ANY definitions of a disk type.
Definition: drives.c:991
print_tok_str
void print_tok_str(uint8_t tok, uint8_t spaces, char *str)
Display Configuration File variable.
Definition: drives.c:305
TOK_MAXIMUM_INTERLEAVE
@ TOK_MAXIMUM_INTERLEAVE
Definition: drives.h:324
DeviceType
Device Type.
Definition: drives.h:256
PRINTERDeviceType
Printer structure.
Definition: drives.h:77
display_Addresses
void display_Addresses(int verbose)
Display Configuration device address saummary.
Definition: drives.c:778
set_Config_Defaults
void set_Config_Defaults(void)
Set Defaults for any missing disk or printer devices These are only used if the Config file omits the...
Definition: drives.c:1427
SS80UnitType::DEVICE_NUMBER
uint32_t DEVICE_NUMBER
Definition: drives.h:158
__memx
#define __memx
Definition: mathio.h:38
TOK_CONFIG
@ TOK_CONFIG
Definition: drives.h:305
token_t::name
char * name
Definition: drives.h:290
TOK_CONTINUOUS_TRANSFER_RATE
@ TOK_CONTINUOUS_TRANSFER_RATE
Definition: drives.h:306
index_ppr
int8_t index_ppr(int8_t ppr)
return index matching ppr
Definition: drives.c:1892
SS80_STATE
@ SS80_STATE
Definition: drives.h:227
HeaderType
Definition: drives.h:40
SS80DiskType::CONFIG
ConfigType CONFIG
Definition: drives.h:197
DeviceType::PPR
uint8_t PPR
Definition: drives.h:260
SS80ControllerType::TRANSFER_RATE
uint16_t TRANSFER_RATE
Definition: drives.h:132
AMIGOStateType
AMIGO emulator state machine index.
Definition: drives.h:57
AMIGOStateType::cyl
uint8_t cyl
Definition: drives.h:64
TOK_HEADS
@ TOK_HEADS
Definition: drives.h:318
PRINTERStateType
Plotter file data structure definition used for saving plot data.
Definition: drives.h:84
CONTROLLER_UNIT
@ CONTROLLER_UNIT
Definition: drives.h:235
find_free
int8_t find_free(void)
Find first free Devices[] slot.
Definition: drives.c:1052
free_device
void free_device(int8_t index)
Free a Device structure for a disk or printer.
Definition: drives.c:1220
TOK_ADDRESS
@ TOK_ADDRESS
Definition: drives.h:297
SS80UnitType::BLOCK_TIME
uint16_t BLOCK_TIME
Definition: drives.h:162
mount_usage
void mount_usage(void)
Definition: drives.c:1789
TOK_UNIT_TYPE
@ TOK_UNIT_TYPE
Definition: drives.h:337
ConfigType::ID
uint16_t ID
Definition: drives.h:52
format_drives
void format_drives(void)
Format devices that have no image file.
Definition: drives.c:1669
TOK_HEADER
@ TOK_HEADER
Definition: drives.h:317
SS80DiskType
Disk Information Structure.
Definition: drives.h:194
SS80StateType::AddressBlocks
uint32_t AddressBlocks
Address in Blocks.
Definition: drives.h:218
PARSE_STATES
PARSE_STATES
Definition: drives.h:224
SS80VolumeType::INTERLEAVE
uint8_t INTERLEAVE
Definition: drives.h:190
val_t::b
uint8_t b
Definition: drives.h:283
SS80_TYPE
@ SS80_TYPE
Definition: drives.h:251
push_state
int push_state(int state)
Push Parser State.
Definition: drives.c:1345
AMIGOStateType::Errors
int Errors
Definition: drives.h:68
SS80p
SS80DiskType * SS80p
Active SS80 Device.
Definition: drives.c:38
TOK_CONTROLLER
@ TOK_CONTROLLER
Definition: drives.h:307
HeaderType::ADDRESS
uint8_t ADDRESS
Definition: drives.h:42
TOK_BLOCKS
@ TOK_BLOCKS
Definition: drives.h:299
PRINTERStateType::size
int16_t size
Definition: drives.h:88
CONTROLLER_CONTROLLER
@ CONTROLLER_CONTROLLER
Definition: drives.h:234
AMIGOStateType::sector
uint8_t sector
Definition: drives.h:66
val_t
Definition: drives.h:281
SS80s
SS80StateType * SS80s
Definition: drives.c:39
SS80UnitType::ACCESS_TIME
uint16_t ACCESS_TIME
Definition: drives.h:165
PRINTERStateType::buf
char * buf
Definition: drives.h:91
TOK_BUFFERED_BLOCKS
@ TOK_BUFFERED_BLOCKS
Definition: drives.h:301
SS80StateType::estate
int estate
Execute state index.
Definition: drives.h:208
TOK_BURST_SIZE
@ TOK_BURST_SIZE
Definition: drives.h:302
SS80VolumeType::MAX_SECTOR
uint16_t MAX_SECTOR
Definition: drives.h:188
find_device
int8_t find_device(int type, int address, int base)
Find a device with matching type AND address.
Definition: drives.c:1063
SS80UnitType::FIXED_VOLUMES
uint8_t FIXED_VOLUMES
Definition: drives.h:167
umount
int8_t umount(int argc, char *argv[])
umount disks - testing
Definition: drives.c:1922
TOK_PRINTER
@ TOK_PRINTER
Definition: drives.h:328
AMIGOGeometryType
Definition: drives.h:95
TOK_TYPE
@ TOK_TYPE
Definition: drives.h:334
SS80_DEFAULT_TYPE
@ SS80_DEFAULT_TYPE
Definition: drives.h:250
PRINTERStateType::error
uint8_t error
Definition: drives.h:89
TOK_UNIT
@ TOK_UNIT
Definition: drives.h:335
DEVICE_TYPES
DEVICE_TYPES
Definition: drives.h:246
SS80StateType::qstat
uint8_t qstat
Qstat variable.
Definition: drives.h:210
posix.h
POSIX wrapper for FatFS.
SS80StateType::Length
uint32_t Length
Length in Bytes.
Definition: drives.h:220
AMIGO_STATE
@ AMIGO_STATE
Definition: drives.h:236
tok_index
int8_t tok_index(char *str)
return the tokens index of the matching string
Definition: drives.c:256
PRINTERStateType::count
uint32_t count
Definition: drives.h:86
test_address
int8_t test_address(int8_t address)
test if address is in use
Definition: drives.c:1875
SS80UnitType::UNIT_TYPE
uint8_t UNIT_TYPE
Definition: drives.h:157
hpdir_set_device
int8_t hpdir_set_device(int8_t index)
Set Device parameters from hpdir information.
Definition: drives.c:1495
PRINTER_STATE
@ PRINTER_STATE
Definition: drives.h:240
PRINTER_CONFIG
@ PRINTER_CONFIG
Definition: drives.h:241
TOK_BLOCK_TIME
@ TOK_BLOCK_TIME
Definition: drives.h:300
TOK_INVALID
@ TOK_INVALID
Definition: drives.h:339
TOK_SS80_DEFAULT
@ TOK_SS80_DEFAULT
Definition: drives.h:332
mount
int8_t mount(int argc, char *argv[])
mount disks - testing
Definition: drives.c:1948
DeviceType::dev
void * dev
Definition: drives.h:262
display_mounts
void display_mounts(void)
Definition: drives.c:2102
TOK_SS80
@ TOK_SS80
Definition: drives.h:331
CONTROLLER_STATE
@ CONTROLLER_STATE
Definition: drives.h:233
SS80_UNIT
@ SS80_UNIT
Definition: drives.h:231
HeaderType::model
char * model
Definition: drives.h:46
SS80UnitType::CONTINUOUS_TRANSFER_RATE
uint16_t CONTINUOUS_TRANSFER_RATE
Definition: drives.h:163
NO_TYPE
@ NO_TYPE
Definition: drives.h:248
TOK_MAX_HEAD
@ TOK_MAX_HEAD
Definition: drives.h:323