HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gpib_hal.h
Go to the documentation of this file.
1 
15 #ifndef _GPIB_HAL_H_
16 #define _GPIB_HAL_H_
17 
18 #include "user_config.h"
19 
20 /* 2 Microseconds */
21 #define GPIB_BUS_SETTLE() _delay_us(GPIB_BUS_SETTLE_DELAY)
22 
23 #define GPIB_TASK_TIC_US SYSTEM_TASK_TIC_US /* Interrupt time in US */
24 
25 #define SYSTEM_ELAPSED_TIMER /* We have a system elapsed time function */
26 
27 typedef struct _gpib_t
28 {
29  volatile uint32_t elapsed;
30  volatile uint32_t down_counter;
31  volatile uint8_t down_counter_done;
32 } gpib_t;
33 
34 extern gpib_t gpib_timer;
35 void gpib_clock_task( void );
36 
50 
58 
59 // control pins are the same on V1 and V2 hardware
60 #define EOI GPIO_B0
61 #define DAV GPIO_B1
62 #define NRFD GPIO_D2
63 #define NDAC GPIO_D3
64 #define IFC GPIO_D4
65 #define SRQ GPIO_D5
66 #define ATN GPIO_D6
67 #define REN GPIO_D7
68 
69 // V2 Hardware
70 
71 #define TE GPIO_C2
72 #define PE GPIO_C3
73 #define DC GPIO_C4
74 #define SC GPIO_C5
75 #define LED1 GPIO_C6
76 #define LED2 GPIO_C7
77 
78 // No loger being used
79 #ifndef SOFTWARE_PP
80 #warning Hardware PP
81 #define PPE GPIO_B2
82 #endif
83 
85 #define GPIB_BUS_OUT() GPIO_PORT_DIR_OUT(GPIO_A)
86 
88 #define GPIB_BUS_IN() GPIO_PORT_DIR_IN(GPIO_A)
89 
91 #define GPIB_BUS_RD() GPIO_PORT_RD(GPIO_A)
92 
94 #define GPIB_BUS_LATCH_WR(val) GPIO_PORT_LATCH_WR(GPIO_A,val)
95 
97 #define GPIB_BUS_WR(val) GPIO_PORT_WR(GPIO_A,val)
98 
100 #define GPIB_PIN_FLOAT(a) GPIO_PIN_FLOAT(a)
101 
103 #define GPIB_PIN_FLOAT_UP(a) GPIO_PIN_FLOAT_UP(a)
104 
106 #define GPIB_PIN_TST(a) GPIO_PIN_TST(a)
107 
109 #define GPIB_IO_LOW(a) GPIO_PIN_LOW(a)
110 
112 #define GPIB_IO_HI(a) GPIO_PIN_HI(a)
113 
115 #define GPIB_IO_RD(a) GPIO_PIN_RD(a)
116 
118 #define GPIB_LATCH_HI(a) GPIO_PIN_LATCH_LOW(a)
119 
121 #define GPIB_LATCH_LOW(a) GPIO_PIN_LATCH_HI(a)
122 
124 #define GPIB_LATCH_RD(a) GPIO_PIN_LATCH_RD(a)
125 
129 
132 #define GPIB_PPR_RD() GPIO_PORT_PINS_RD(GPIO_A)
133 
136 #define GPIB_PPR_DDR_RD() GPIO_PORT_DDR_RD(GPIO_A)
137 
139 // FIXME just to be safe we check that evreything is defained
140 
141 #ifndef GPIB_BUS_RD
142 #error GPIB_BUS_RD read macro is not defined
143 #endif
144 
145 #ifndef GPIB_BUS_WR
146 #error GPIB_BUS_WR write macro is not defined
147 #endif
148 
149 #ifndef GPIB_BUS_IN
150 #error GPIB_BUS_IN read macro is not defined
151 #endif
152 
153 #ifndef GPIB_BUS_OUT
154 #error GPIB_BUS_OUT write macro is not defined
155 #endif
156 
157 #ifndef GPIB_BUS_LATCH_WR
158 #error GPIB_BUS_LATCH_WR write macro is not defined
159 #endif
160 
161 #ifndef GPIB_BUS_SETTLE
162 #error GPIB_BUS_SETTLE write macro is not defined
163 #endif
164 
165 #ifndef GPIB_IO_RD
166 #error GPIB_IO_RD is not defined
167 #endif
168 
169 #ifndef GPIB_IO_LOW
170 #error GPIB_IO_LOW is not defined
171 #endif
172 
173 #ifndef GPIB_IO_HI
174 #error GPIB_IO_HI is not defined
175 #endif
176 
177 #ifndef GPIB_PIN_FLOAT
178 #error GPIB_PIN_FLOAT is not defined
179 #endif
180 
181 #ifndef GPIB_PIN_FLOAT_UP
182 #error GPIB_PIN_FLOAT_UP is not defined
183 #endif
184 
185 #ifndef GPIB_PIN_TST
186 #error GPIB_PIN_TST is not defined
187 #endif
188 
189 /* gpib_hal.c */
190 void gpib_timer_init ( void );
191 uint8_t reverse_8bits ( uint8_t mask );
192 void ppr_set ( uint8_t mask );
193 void soft_ppr_assert ( void );
194 void soft_ppr_restore ( void );
195 uint8_t ppr_reg ( void );
196 void ppr_init ( void );
197 void ppr_bit_set ( uint8_t bit );
198 void ppr_bit_clr ( uint8_t bit );
199 FRESULT dbf_open ( FIL *fp , const TCHAR *path , BYTE mode );
200 FRESULT dbf_read ( FIL *fp , void *buff , UINT btr , UINT *br );
201 FRESULT dbf_write ( FIL *fp , const void *buff , UINT btw , UINT *bw );
202 FRESULT dbf_lseek ( FIL *fp , DWORD ofs );
203 FRESULT dbf_close ( FIL *fp );
204 int dbf_open_read ( char *name , uint32_t pos , void *buff , int size , int *errors );
205 int dbf_open_write ( char *name , uint32_t pos , void *buff , int size , int *errors );
206 #endif // #ifndef _GPIB_HAL_H_
TCHAR
char TCHAR
Definition: ff.h:99
_gpib_t::down_counter_done
volatile uint8_t down_counter_done
Definition: gpib_hal.h:31
FIL
Definition: ff.h:205
dbf_open
FRESULT dbf_open(FIL *fp, const TCHAR *path, BYTE mode)
Wrapper for FatFs f_open() that can displays errors.
Definition: gpib_hal.c:195
reverse_8bits
uint8_t reverse_8bits(uint8_t mask)
Reverse the bits in an 8 bit value.
Definition: gpib_hal.c:49
BYTE
unsigned char BYTE
Definition: ff.h:54
gpib_timer
gpib_t gpib_timer
Definition: gpib_hal.c:22
soft_ppr_restore
void soft_ppr_restore(void)
ppr_init
void ppr_init(void)
Reset PPR enable register - all disable..
Definition: gpib_hal.c:126
dbf_close
FRESULT dbf_close(FIL *fp)
Wrapper of FatFs f_close() that can display errors.
Definition: gpib_hal.c:287
soft_ppr_assert
void soft_ppr_assert(void)
UINT
unsigned int UINT
Definition: ff.h:53
ppr_set
void ppr_set(uint8_t mask)
Enable or Disable Parallel Poll Response bits - PPR.
Definition: gpib_hal.c:88
gpib_t
struct _gpib_t gpib_t
_gpib_t::elapsed
volatile uint32_t elapsed
Definition: gpib_hal.h:29
dbf_read
FRESULT dbf_read(FIL *fp, void *buff, UINT btr, UINT *br)
Wrapper for FatFs f_read() that can display errors.
Definition: gpib_hal.c:220
dbf_open_write
int dbf_open_write(char *name, uint32_t pos, void *buff, int size, int *errors)
Open, Seek, Write data and Close FatFs functions.
Definition: gpib_hal.c:379
ppr_bit_set
void ppr_bit_set(uint8_t bit)
Enable hardware PPR response for a given device.
Definition: gpib_hal.c:153
FRESULT
FRESULT
Definition: ff.h:276
ppr_reg
uint8_t ppr_reg(void)
Return PPR enable register.
Definition: gpib_hal.c:109
dbf_write
FRESULT dbf_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
wrapper for FatFs f_write() that can display errors.
Definition: gpib_hal.c:244
_gpib_t
Definition: gpib_hal.h:27
gpib_clock_task
void gpib_clock_task(void)
dbf_lseek
FRESULT dbf_lseek(FIL *fp, DWORD ofs)
Wrapper of FatFs f_seek() that can display errors.
Definition: gpib_hal.c:266
gpib_timer_init
void gpib_timer_init(void)
===================================================
Definition: gpib_hal.c:29
DWORD
unsigned long DWORD
Definition: ff.h:56
_gpib_t::down_counter
volatile uint32_t down_counter
Definition: gpib_hal.h:30
ppr_bit_clr
void ppr_bit_clr(uint8_t bit)
Disbale hardware PPR response for a given device.
Definition: gpib_hal.c:177
dbf_open_read
int dbf_open_read(char *name, uint32_t pos, void *buff, int size, int *errors)
Open, Seek, Read data and Close FatFs functions.
Definition: gpib_hal.c:314