HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
18 #include "user_config.h"
21 #define GPIB_BUS_SETTLE() _delay_us(GPIB_BUS_SETTLE_DELAY)
23 #define GPIB_TASK_TIC_US SYSTEM_TASK_TIC_US
25 #define SYSTEM_ELAPSED_TIMER
85 #define GPIB_BUS_OUT() GPIO_PORT_DIR_OUT(GPIO_A)
88 #define GPIB_BUS_IN() GPIO_PORT_DIR_IN(GPIO_A)
91 #define GPIB_BUS_RD() GPIO_PORT_RD(GPIO_A)
94 #define GPIB_BUS_LATCH_WR(val) GPIO_PORT_LATCH_WR(GPIO_A,val)
97 #define GPIB_BUS_WR(val) GPIO_PORT_WR(GPIO_A,val)
100 #define GPIB_PIN_FLOAT(a) GPIO_PIN_FLOAT(a)
103 #define GPIB_PIN_FLOAT_UP(a) GPIO_PIN_FLOAT_UP(a)
106 #define GPIB_PIN_TST(a) GPIO_PIN_TST(a)
109 #define GPIB_IO_LOW(a) GPIO_PIN_LOW(a)
112 #define GPIB_IO_HI(a) GPIO_PIN_HI(a)
115 #define GPIB_IO_RD(a) GPIO_PIN_RD(a)
118 #define GPIB_LATCH_HI(a) GPIO_PIN_LATCH_LOW(a)
121 #define GPIB_LATCH_LOW(a) GPIO_PIN_LATCH_HI(a)
124 #define GPIB_LATCH_RD(a) GPIO_PIN_LATCH_RD(a)
132 #define GPIB_PPR_RD() GPIO_PORT_PINS_RD(GPIO_A)
136 #define GPIB_PPR_DDR_RD() GPIO_PORT_DDR_RD(GPIO_A)
142 #error GPIB_BUS_RD read macro is not defined
146 #error GPIB_BUS_WR write macro is not defined
150 #error GPIB_BUS_IN read macro is not defined
154 #error GPIB_BUS_OUT write macro is not defined
157 #ifndef GPIB_BUS_LATCH_WR
158 #error GPIB_BUS_LATCH_WR write macro is not defined
161 #ifndef GPIB_BUS_SETTLE
162 #error GPIB_BUS_SETTLE write macro is not defined
166 #error GPIB_IO_RD is not defined
170 #error GPIB_IO_LOW is not defined
174 #error GPIB_IO_HI is not defined
177 #ifndef GPIB_PIN_FLOAT
178 #error GPIB_PIN_FLOAT is not defined
181 #ifndef GPIB_PIN_FLOAT_UP
182 #error GPIB_PIN_FLOAT_UP is not defined
186 #error GPIB_PIN_TST is not defined
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_
volatile uint8_t down_counter_done
FRESULT dbf_open(FIL *fp, const TCHAR *path, BYTE mode)
Wrapper for FatFs f_open() that can displays errors.
uint8_t reverse_8bits(uint8_t mask)
Reverse the bits in an 8 bit value.
void soft_ppr_restore(void)
void ppr_init(void)
Reset PPR enable register - all disable..
FRESULT dbf_close(FIL *fp)
Wrapper of FatFs f_close() that can display errors.
void soft_ppr_assert(void)
void ppr_set(uint8_t mask)
Enable or Disable Parallel Poll Response bits - PPR.
volatile uint32_t elapsed
FRESULT dbf_read(FIL *fp, void *buff, UINT btr, UINT *br)
Wrapper for FatFs f_read() that can display errors.
int dbf_open_write(char *name, uint32_t pos, void *buff, int size, int *errors)
Open, Seek, Write data and Close FatFs functions.
void ppr_bit_set(uint8_t bit)
Enable hardware PPR response for a given device.
uint8_t ppr_reg(void)
Return PPR enable register.
FRESULT dbf_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
wrapper for FatFs f_write() that can display errors.
void gpib_clock_task(void)
FRESULT dbf_lseek(FIL *fp, DWORD ofs)
Wrapper of FatFs f_seek() that can display errors.
void gpib_timer_init(void)
===================================================
volatile uint32_t down_counter
void ppr_bit_clr(uint8_t bit)
Disbale hardware PPR response for a given device.
int dbf_open_read(char *name, uint32_t pos, void *buff, int size, int *errors)
Open, Seek, Read data and Close FatFs functions.