HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
GPIB emulator hardwware layer for HP85 disk emulator project for AVR. More...
#include "gpib_hal.h"
#include "gpib.h"
#include "fatfs.h"
#include "posix.h"
#include "defines.h"
#include "debug.h"
Go to the source code of this file.
Functions | |
void | gpib_timer_init () |
Install GPIB timers, Elapsed time and Timeout tasks. More... | |
uint8_t | reverse_8bits (uint8_t mask) |
Reverse the bits in an 8 bit value. More... | |
void | ppr_set (uint8_t mask) |
Enable or Disable Parallel Poll Response bits - PPR. More... | |
uint8_t | ppr_reg () |
Return PPR enable register. More... | |
void | ppr_init () |
Reset PPR enable register - all disable.. More... | |
void | ppr_bit_set (uint8_t bit) |
Enable hardware PPR response for a given device. More... | |
void | ppr_bit_clr (uint8_t bit) |
Disbale hardware PPR response for a given device. More... | |
FRESULT | dbf_open (FIL *fp, const TCHAR *path, BYTE mode) |
Wrapper for FatFs f_open() that can displays errors. More... | |
FRESULT | dbf_read (FIL *fp, void *buff, UINT btr, UINT *br) |
Wrapper for FatFs f_read() that can display errors. More... | |
FRESULT | dbf_write (FIL *fp, const void *buff, UINT btw, UINT *bw) |
wrapper for FatFs f_write() that can display errors. More... | |
FRESULT | dbf_lseek (FIL *fp, DWORD ofs) |
Wrapper of FatFs f_seek() that can display errors. More... | |
FRESULT | dbf_close (FIL *fp) |
Wrapper of FatFs f_close() that can display errors. More... | |
int | dbf_open_read (char *name, uint32_t pos, void *buff, int size, int *errors) |
Open, Seek, Read data and Close FatFs functions. More... | |
int | dbf_open_write (char *name, uint32_t pos, void *buff, int size, int *errors) |
Open, Seek, Write data and Close FatFs functions. More... | |
Variables | |
gpib_t | gpib_timer |
static uint8_t | _ppr_reg |
Parallel Poll Response bit mask. More... | |
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
Definition in file gpib_hal.c.
Wrapper of FatFs f_close() that can display errors.
[in] | fp | FatFs FIL * pointer. |
Definition at line 287 of file gpib_hal.c.
Referenced by dbf_open_read(), and dbf_open_write().
Wrapper of FatFs f_seek() that can display errors.
[in] | fp | FatFs FIL * pointer. |
[in] | ofs | seek offset. |
Definition at line 266 of file gpib_hal.c.
Referenced by dbf_open_read(), and dbf_open_write().
Wrapper for FatFs f_open() that can displays errors.
[in] | fp | FatFs FIL handle |
[in] | path | path name of file to open |
[in] | mode | FatFs open mode flags |
Definition at line 195 of file gpib_hal.c.
Referenced by dbf_open_read(), and dbf_open_write().
int dbf_open_read | ( | char * | name, |
uint32_t | pos, | ||
void * | buff, | ||
int | size, | ||
int * | errors | ||
) |
Open, Seek, Read data and Close FatFs functions.
[in] | name | File name to open. |
[in] | pos | file offset. |
[out] | buff | buffer to read data into. |
[in] | size | bytes to read. |
[in] | errors | error flags pointer. |
SEEK
Definition at line 314 of file gpib_hal.c.
Referenced by SS80_locate_and_read().
int dbf_open_write | ( | char * | name, |
uint32_t | pos, | ||
void * | buff, | ||
int | size, | ||
int * | errors | ||
) |
Open, Seek, Write data and Close FatFs functions.
[in] | name | File name to open. |
[in] | pos | file offset. |
[in] | buff | buffer to write. |
[in] | size | bytes to write. |
[in] | errors | error flags pointer. |
SEEK
Definition at line 379 of file gpib_hal.c.
Referenced by SS80_locate_and_write().
Wrapper for FatFs f_read() that can display errors.
[in] | fp | FatFs FIL handle. |
[in] | buff | buffer to read data into. |
[in] | btr | bytes to read. |
[in] | br | bytes actually read. |
Definition at line 220 of file gpib_hal.c.
Referenced by dbf_open_read().
wrapper for FatFs f_write() that can display errors.
[in] | fp | FatFs FIL handle. |
[in] | buff | buffer to write data from. |
[in] | btw | bytes to write. |
[in] | bw | bytes actually written. |
Definition at line 244 of file gpib_hal.c.
Referenced by dbf_open_write().
void gpib_timer_init | ( | ) |
Install GPIB timers, Elapsed time and Timeout tasks.
===================================================
Definition at line 29 of file gpib_hal.c.
Referenced by main().
void ppr_bit_clr | ( | uint8_t | bit | ) |
Disbale hardware PPR response for a given device.
[in] | bit | PPR bit to disable.
|
FIXME _ppr_reg = 0;
Definition at line 177 of file gpib_hal.c.
Referenced by gpib_disable_PPR(), and gpib_tests().
void ppr_bit_set | ( | uint8_t | bit | ) |
Enable hardware PPR response for a given device.
[in] | bit | PPR bit to enable.
|
FIXME _ppr_reg = 0;
Definition at line 153 of file gpib_hal.c.
Referenced by gpib_enable_PPR(), and gpib_tests().
void ppr_init | ( | ) |
Reset PPR enable register - all disable..
Definition at line 126 of file gpib_hal.c.
Referenced by gpib_state_init(), and gpib_tests().
uint8_t ppr_reg | ( | ) |
Return PPR enable register.
optionally reverse bit order in PPR mask Used only of PPR circuit board PPR bits are not reversed in hardware
Definition at line 109 of file gpib_hal.c.
Referenced by gpib_detect_PP(), gpib_disable_PPR(), and gpib_enable_PPR().
void ppr_set | ( | uint8_t | mask | ) |
Enable or Disable Parallel Poll Response bits - PPR.
[in] | mask | Parallel Poll Response bits to enable or disable |
optionally reverse bit order in PPR mask Used only of PPR circuit board PPR bits are not reversed in hardware
Definition at line 88 of file gpib_hal.c.
Referenced by gpib_tests(), ppr_bit_clr(), ppr_bit_set(), and ppr_init().
uint8_t reverse_8bits | ( | uint8_t | mask | ) |
Reverse the bits in an 8 bit value.
[in] | mask | bit mask to reverse. |
Definition at line 49 of file gpib_hal.c.
|
static |
Parallel Poll Response bit mask.
Definition at line 39 of file gpib_hal.c.
Referenced by ppr_bit_clr(), ppr_bit_set(), ppr_reg(), and ppr_set().
gpib_t gpib_timer |
Definition at line 22 of file gpib_hal.c.
Referenced by gpib_timeout_set(), gpib_timeout_test(), gpib_timer_elapsed_begin(), gpib_timer_elapsed_end(), gpib_timer_reset(), and gpib_timer_task().