HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gpib_hal.c
Go to the documentation of this file.
1 
15 #include "gpib_hal.h"
16 #include "gpib.h"
17 #include "fatfs.h"
18 #include "posix.h"
19 #include "defines.h"
20 #include "debug.h"
21 
23 
28 
30 {
31  if(set_timers(gpib_timer_task,1) == -1) // Install Clock Task
32  printf("GPIB Clock task init failed\n");
33 
35 }
36 
37 
39 static uint8_t _ppr_reg;
40 
49 uint8_t reverse_8bits(uint8_t mask)
50 {
51  int8_t i;
52  uint8_t rmask = 0;
53  for(i=0;i<8;++i)
54  {
55  rmask <<= 1;
56  if(mask & 1)
57  rmask |= 1;
58  mask >>= 1;
59  }
60  return(rmask & 0xff);
61 }
62 
63 
65 //
87 
88 void ppr_set(uint8_t mask)
89 {
92 #if PPR_REVERSE_BITS == 1
93  _ppr_reg = reverse_8bits(mask);
94 #else
95  _ppr_reg = mask;
96 #endif
98 
99  GPIB_IO_HI(PPE);
100  GPIB_IO_LOW(PPE);
101 }
102 
103 
108 
109 uint8_t ppr_reg()
110 {
113 #if PPR_REVERSE_BITS == 1
114  return(reverse_8bits(_ppr_reg));
115 #else
116  return(_ppr_reg);
117 #endif
118 }
119 
120 
125 
126 void ppr_init()
127 {
128 #if SDEBUG
129  if(debuglevel & GPIB_PPR)
130  printf("[PPR DISABLE ALL]\n");
131 #endif
132  ppr_set(0);
133 }
134 
135 
152 
153 void ppr_bit_set(uint8_t bit)
154 {
156  BIT_SET(_ppr_reg,bit);
157  ppr_set(_ppr_reg);
158 }
159 
160 
176 
177 void ppr_bit_clr(uint8_t bit)
178 {
180  BIT_CLR(_ppr_reg,bit);
181  ppr_set(_ppr_reg);
182 }
183 
184 
194 
195 FRESULT dbf_open (FIL* fp, const TCHAR* path, BYTE mode)
196 {
197  int rc;
198  rc = f_open(fp,path, mode);
199  if(rc)
200  {
201  printf("Open error:[%s] ", path);
202  put_rc(rc);
203  return (rc);
204  }
205  return(0);
206 }
207 
208 
219 
220 FRESULT dbf_read (FIL* fp, void* buff, UINT btr, UINT* br)
221 {
222  int rc;
223  rc = f_read(fp, buff, btr, br);
224  if(rc)
225  {
226  printf("Read error: ");
227  put_rc(rc);
228  return (rc);
229  }
230  return(0);
231 }
232 
233 
243 
244 FRESULT dbf_write (FIL* fp, const void* buff, UINT btw, UINT* bw)
245 {
246  int rc;
247  rc = f_write(fp, buff, btw, bw);
248  if(rc)
249  {
250  printf("Write error: ");
251  put_rc(rc);
252  return (rc);
253  }
254  return(0);
255 }
256 
257 
265 
267 {
268  int rc;
269  rc = f_lseek(fp, ofs);
270  if(rc)
271  {
272  printf("Seek error: ");
273  put_rc(rc);
274  return (rc);
275  }
276  return(0);
277 }
278 
279 
286 
288 {
289  int rc;
290  rc = f_close(fp);
291  if(rc != FR_OK)
292  {
293  printf("Close error: ");
294  put_rc(rc);
295  return (rc);
296  }
297  return(0);
298 }
299 
300 
313 
314 int dbf_open_read(char *name, uint32_t pos, void *buff, int size, int *errors)
315 {
316  int rc;
317  FIL fp;
318  int flags = 0;
319  UINT bytes = 0;
320 
321  rc = dbf_open(&fp, name, FA_OPEN_EXISTING | FA_READ | FA_WRITE);
322  if( rc != FR_OK)
323  {
324  flags |= ERR_DISK;
325  flags |= ERR_READ;
326  *errors = flags;
327  return( -1 );
328  }
329 
331  rc = dbf_lseek(&fp, pos);
332  if( rc != FR_OK)
333  {
334  flags |= ERR_SEEK;
335  flags |= ERR_READ;
336  *errors = flags;
337  dbf_close(&fp);
338  return( -1 );
339  }
340 
341  rc = dbf_read(&fp, buff,size,&bytes);
342  if( rc != FR_OK || (UINT) size != bytes)
343  {
344  flags |= ERR_READ;
345  *errors = flags;
346  dbf_close(&fp);
347  return( -1 );
348  }
349  rc = dbf_close(&fp);
350  if( rc != FR_OK)
351  {
352  flags |= ERR_DISK;
353  *errors = flags;
354  return( -1 );
355  }
356 
357 
358 #if 0
359 // test timeout - this works ok
360  delayms(500);
361 #endif
362 
363  return(bytes);
364 }
365 
366 
379 int dbf_open_write(char *name, uint32_t pos, void *buff, int size, int *errors)
380 {
381  int rc;
382  FIL fp;
383  int flags = 0;
384  UINT bytes = 0;
385 
386  rc = dbf_open(&fp, name, FA_OPEN_EXISTING | FA_READ | FA_WRITE);
387  if( rc != FR_OK)
388  {
389  flags |= ERR_DISK;
390  flags |= ERR_WRITE;
391  *errors = flags;
392  return( -1 );
393  }
394 
396  rc = dbf_lseek(&fp, pos);
397  if( rc != FR_OK)
398  {
399  flags |= ERR_SEEK;
400  flags |= ERR_WRITE;
401  *errors = flags;
402  dbf_close(&fp);
403  return( -1 );
404  }
405 
406  rc = dbf_write(&fp, buff,size,&bytes);
407  if( rc != FR_OK || (UINT) size != bytes)
408  {
409  flags |= ERR_WRITE;
410  *errors = flags;
411  dbf_close(&fp);
412  return( -1 );
413  }
414  rc = dbf_close(&fp);
415  if( rc != FR_OK)
416  {
417  flags |= ERR_DISK;
418  *errors = flags;
419  return( -1 );
420  }
421 
422 #if 0
423 // test timeout - this causes timeout
424  delayms(200);
425 #endif
426 
427  return(bytes);
428 }
gpib_timer_task
void gpib_timer_task()
Main GPIB timer task called by low level interrup hander.
Definition: gpib.c:190
fatfs.h
TCHAR
char TCHAR
Definition: ff.h:99
dbf_lseek
FRESULT dbf_lseek(FIL *fp, DWORD ofs)
Wrapper of FatFs f_seek() that can display errors.
Definition: gpib_hal.c:266
ERR_WRITE
#define ERR_WRITE
Definition: defines.h:81
printf
MEMSPACE int printf(const char *format,...)
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
FIL
Definition: ff.h:205
debuglevel
int debuglevel
Debug flag - used to log GPIB and emulator messages.
Definition: gpib_task.c:33
f_write
FRESULT f_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
Definition: ff.c:3990
FA_WRITE
#define FA_WRITE
Definition: ff.h:391
PPE
#define PPE
Definition: gpib_hal.h:81
BYTE
unsigned char BYTE
Definition: ff.h:54
ppr_bit_set
void ppr_bit_set(uint8_t bit)
Enable hardware PPR response for a given device.
Definition: gpib_hal.c:153
f_open
FRESULT f_open(FIL *fp, const TCHAR *path, BYTE mode)
Definition: ff.c:3697
GPIB_PPR
#define GPIB_PPR
Definition: debug.h:5
gpib_timer_init
void gpib_timer_init()
Install GPIB timers, Elapsed time and Timeout tasks.
Definition: gpib_hal.c:29
GPIB_IO_HI
#define GPIB_IO_HI(a)
changes pin mode to write then set hi
Definition: gpib_hal.h:112
gpib_timer
gpib_t gpib_timer
Definition: gpib_hal.c:22
ppr_set
void ppr_set(uint8_t mask)
Enable or Disable Parallel Poll Response bits - PPR.
Definition: gpib_hal.c:88
ppr_init
void ppr_init()
Reset PPR enable register - all disable..
Definition: gpib_hal.c:126
FA_OPEN_EXISTING
#define FA_OPEN_EXISTING
Definition: ff.h:392
SPI0_TXRX_Byte
uint8_t SPI0_TXRX_Byte(uint8_t Data)
SPI read/Write byte.
Definition: spi.c:245
UINT
unsigned int UINT
Definition: ff.h:53
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
ERR_DISK
#define ERR_DISK
Definition: defines.h:84
_ppr_reg
static uint8_t _ppr_reg
Parallel Poll Response bit mask.
Definition: gpib_hal.c:39
defines.h
GPIB, AMIGO, SS80 and device defines.
BIT_SET
#define BIT_SET(x, y)
Note: IF x and y are constants the compiler will fully reduce the expression.
Definition: bits.h:17
ERR_SEEK
#define ERR_SEEK
Definition: defines.h:82
put_rc
MEMSPACE void put_rc(int rc)
display FatFs return code as ascii string
Definition: fatfs_sup.c:145
BIT_CLR
#define BIT_CLR(x, y)
Definition: bits.h:18
FA_READ
#define FA_READ
Definition: ff.h:390
dbf_close
FRESULT dbf_close(FIL *fp)
Wrapper of FatFs f_close() that can display errors.
Definition: gpib_hal.c:287
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
delayms
void delayms(uint32_t ms)
Delay miliseconds using AVR acr-libc _delay_us() function.
Definition: delay.c:53
f_lseek
FRESULT f_lseek(FIL *fp, FSIZE_t ofs)
Definition: ff.c:4408
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
reverse_8bits
uint8_t reverse_8bits(uint8_t mask)
Reverse the bits in an 8 bit value.
Definition: gpib_hal.c:49
FRESULT
FRESULT
Definition: ff.h:276
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
FR_OK
@ FR_OK
Definition: ff.h:277
ppr_bit_clr
void ppr_bit_clr(uint8_t bit)
Disbale hardware PPR response for a given device.
Definition: gpib_hal.c:177
set_timers
MEMSPACE int set_timers(void(*handler)(void), int timer __attribute__((unused)))
Install a user timer task.
Definition: timer.c:59
gpib.h
GPIB emulator for HP85 disk emulator project for AVR.
_gpib_t
Definition: gpib_hal.h:27
ERR_READ
#define ERR_READ
Definition: defines.h:80
DWORD
unsigned long DWORD
Definition: ff.h:56
gpib_hal.h
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
posix.h
POSIX wrapper for FatFS.
ppr_reg
uint8_t ppr_reg()
Return PPR enable register.
Definition: gpib_hal.c:109
f_read
FRESULT f_read(FIL *fp, void *buff, UINT btr, UINT *br)
Definition: ff.c:3889
f_close
FRESULT f_close(FIL *fp)
Definition: ff.c:4193
GPIB_IO_LOW
#define GPIB_IO_LOW(a)
changes pin mode to write then set low
Definition: gpib_hal.h:109
debug.h
gpib_timer_reset
void gpib_timer_reset(void)
Reset elapsed and timeout timers Elapses and Timeout Timers.
Definition: gpib.c:150