-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathamigo.cfg
121 lines (115 loc) · 3.46 KB
/
amigo.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# @brief GPIB, AMIGO, SS80 and device defines.
# @par Edit History - [1.0] [Mike Gore]
# @par Copyright © 2020 Mike Gore, Inc. All rights reserved.
#
# Define global defaults
# See: scripts/create_everything.sh for updating drive types
#
# ========================
# DEBUG FLAGS
# ========================
# Debug level truth table
# See also gpib/debug.h
# You can OR the following values together to add debug processing
# Values in the table are in HEX (base 16)
# Warning: Setting too many can cause HP85 timeouts while displaying messages
# 1 ERRORS - all GPIB and device related error message
# # Note: Will not suppress Startup and configuration errors
# 2 GPIB PPR Parallel Poll Response states
# 4 GPIB BUS level single command byte decoded messages
# 8 GPIB main loop - top level data and controll lines decoded
# 10 GPIB TODO DEVICE missing support code
# 20 GPIB Device Level states such as AMIGO,SS80,PRINTER
# 40 GPIB Disk I/O read/write times
# 80 GPIB read/write string timing
# 100 GPIB read/write string byte decode
# 200 GPIB try to detect Parallel Poll BUS state
# 400 LIF utitilites debugging
#
# Debug settings Examples:
# Most usefull debuggging messages
# (1+2+8+10+20)
# DEBUG = 0x3D
# Main device states and errors only
# (1+2+10+20)
# DEBUG = 0x33
# Main device states and errors only
# (1+2+10+20)
# DEBUG = 0x33
# Errors and TODO messages only
# (1+10)
# DEBUG = 0x11
# DEFAULT - just report errors and TODO
# Note - for the following drives the TODO messages you will see are harmless
DEBUG = 0x1
# @brief GPIB, AMIGO, SS80 and device defines.
# @par Edit History - [1.0] [Mike Gore]
# @par Copyright © 2020 Mike Gore, Inc. All rights reserved.
#
# Define global defaults
# See: scripts/create_everything.sh for updating drive types
#
# ========================
# PRINTERS
# ========================
# PRINTER Definition 1
#
# Note printer reception is now fully automatic
# Captures a plot with todays date as set by the DS1307 RTC on the AVR
# Captures PLIST data so you can export programs listings:
# PRINTER IS 705
# PLIST
PRINTER
CONFIG
# GPIB Address
ADDRESS = 5
END
END
# HP9121 dual 270K AMIGO floppy disc
# HP85 BASIC ADDRESS :D700
AMIGO 9121
HEADER
# GPIB Address
ADDRESS = 0
# Parallel Poll Reponse Bit
PPR = 0
# LIF image file name
FILE = /amigo0.lif
END
END
# HP9121 dual 270K AMIGO floppy disc
# HP85 BASIC ADDRESS :D710
AMIGO 9121
HEADER
# GPIB Address
ADDRESS = 1
# Parallel Poll Reponse Bit
PPR = 1
# LIF image file name
FILE = /amigo1.lif
END
END
# HP9121 dual 270K AMIGO floppy disc
# HP85 BASIC ADDRESS :D720
AMIGO 9121
HEADER
# GPIB Address
ADDRESS = 2
# Parallel Poll Reponse Bit
PPR = 2
# LIF image file name
FILE = /amigo2.lif
END
END
# HP9121 dual 270K AMIGO floppy disc
# HP85 BASIC ADDRESS :D730
AMIGO 9121
HEADER
# GPIB Address
ADDRESS = 3
# Parallel Poll Reponse Bit
PPR = 3
# LIF image file name
FILE = /amigo3.lif
END
END