HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
main.c
Go to the documentation of this file.
1 
14 #include <user_config.h>
15 #include "hardware/i2c.h"
16 
17 
18 
19 #ifndef _IOM1284P_H_
20 #error _IOM1284P_H_
21 #endif
22 
23 #include "gpib/defines.h"
24 #include "gpib/gpib_hal.h"
25 #include "gpib/gpib.h"
26 #include "gpib/gpib_task.h"
27 #include "gpib/gpib_tests.h"
28 #include "gpib/printer.h"
29 #include "gpib/amigo.h"
30 #include "gpib/ss80.h"
31 #ifdef POSIX_TESTS
32 #include "posix/posix_tests.h"
33 #endif
34 
35 #ifdef LIF_SUPPORT
36 #include "lif/lifutils.h"
37 #endif
38 
39 #ifdef PORTIO_TESTS
40 #include "hardware/portio.h"
41 #endif
42 
43 #include <math.h>
44 
45 /* RunBoot define */
46 typedef void (*RESET_t)(void) __attribute__((noreturn));
47 
48 #ifdef OPTIBOOT
49 //void (*RESET) (void) = (0x10000-0x400);
50 const RESET_t RESET = (RESET_t) (0x10000-0x400);
51 #else
52 const RESET_t RESET = (RESET_t) (0);
53 #endif
54 
55 int8_t debug_input = 0;
56 
59 void copyright()
60 {
61  printf("HP85 Disk and Device Emulator with built in LIF utilities\n");
62  printf(" (c) 2014-2020 by Mike Gore\n");
63  printf(" GNU version 3\n");
64  printf("-> https://github.com/magore/hp85disk\n");
65  printf(" GIT last pushed: %s\n", GIT_VERSION);
66  printf(" Last updated file: %s\n", LOCAL_MOD);
67  printf("\n");
68 }
69 
70 
71 
73 
74 #ifdef LCD_SUPPORT
75 
76 
83 uint8_t _cmd1[2] = { 0xfe, 0x80 };
84 uint8_t _line1 [21] = { ' ' };
85 uint8_t _cmd2[2] = { 0xfe, 0xC0 };
86 uint8_t _line2 [21] = { ' ' };
87 #endif // LCD_SUPPORT
88 
90 #ifdef LCD_SUPPORT
91 
93 static int16_t lcd_display_time = 0;
94 
96 void lcd_task()
97 {
98  ++lcd_display_time;
99 }
100 
108 MEMSPACE
109 char *lcd_time(tm_t *t, char *buf, int max)
110 {
111 // normaize tm_t before output
112  (void) normalize(t,0);
113  memset(buf,0,max);
114  snprintf(buf,max-1,"%s %2d %02d:%02d:%02d",
116  (int)t->tm_mday,
117  (int)t->tm_hour,
118  (int)t->tm_min,
119  (int)t->tm_sec);
120  return(buf);
121 }
122 
123 
126 uint8_t _backlight[5] = { 0x7c, '+', 0x80, 0x80, 0x80 }; /* Backlight half bright */
127 uint8_t lcd_backlight(uint32_t rgb)
128 {
129 
130  _backlight[2] = 0xff & (rgb >> 16);
131  _backlight[3] = 0xff & (rgb >> 8);
132  _backlight[4] = 0xff & (rgb );
133 
134  if(! i2c_fn(0x72, TW_WRITE, _backlight, sizeof(_backlight)) )
135  {
137  printf("I2C LCD is NOT attached!\n");
138  return(0);
139  }
140  return(1);
141 }
142 
147 void lcd_setup()
148 {
149  int ind = 0;
150  uint8_t sreg = SREG;
151 
152  printf("I2C LCD initialization start\n");
153 
154  if(set_timers(lcd_task,1) == -1)
155  printf("lcd_task init failed\n");
156 
157  i2c_init(100000);
158 
159  i2c_task_init();
160 
161  cli();
162 
163  // Default startup message
164  sprintf((char *) _line1, "%-16s", "HP85Disk V2");
165  sprintf((char *) _line2, "%-16s", "(C)Mike Gore");
166 
167  i2c_task_op[ind++] = i2c_task_op_add(0x72, TW_WRITE, _cmd1, sizeof(_cmd1));
168  i2c_task_op[ind++] = i2c_task_op_add(0x72, TW_WRITE, _line1, 16);
169  i2c_task_op[ind++] = i2c_task_op_add(0x72, TW_WRITE, _cmd2, sizeof(_cmd2));
170  i2c_task_op[ind++] = i2c_task_op_add(0x72, TW_WRITE, _line2, 16);
171 
172  SREG = sreg;
173 
174  i2c_task_run();
175  // wait long enough for us to see the startup message
176  delayms(1000);
177 
178  // Verify the task finished - it normally takes < 30mS
179  if(!i2c_task_done())
180  {
182  printf("I2C LCD is NOT attached!\n");
183  }
184 
185  sep();
186 }
187 
188 
191 void i2c_lcd_task()
192 {
193  char buf[32];
194  uint8_t sreg=SREG;
195  ts_t ts;
196 
197  cli();
198  if(!mmc_ins_status())
199  {
200  sprintf((char *) _line2,"%-16s", "SD Card Fault");
201  }
202  else
203  {
204  clock_gettime(0, (ts_t *) &ts);
205  sprintf((char *) _line2, "%-16s", lcd_time(gmtime(&(ts.tv_sec)),buf,sizeof(buf)-1) );
206  // sprintf((char *) _line2,"%16ld.%03ld", (long) ts.tv_sec, (long) ts.tv_nsec / 1000000UL);
207  }
208  SREG=sreg;
209 
210  i2c_task_run();
211 }
212 
213 
214 #endif // LCD_SUPPORT
215 
217 #ifdef LCD_SUPPORT
218 void gpib_user_task()
222 {
223  uint8_t sreg = SREG;
224 
225  cli();
226  if(lcd_display_time > 100) // increments at 1000HZ
227  {
228  lcd_display_time = 0;
229  SREG = sreg;
230  i2c_lcd_task();
231  return;
232  }
233  SREG = sreg;
234 }
235 #else // LCD_SUPPORT
237 {
238 }
239 
240 #endif // LCD_SUPPORT
241 
243 
249 void help()
250 {
251 
252  copyright();
253 
254  printf("help - displays this help menu\n");
255 
256 #ifdef LCD_SUPPORT
257  printf("backlight 0xRRGGBB - format 0x[00-FF][00-FF][00-FF]\n");
258 #endif
259  printf("dir Directory list MSDOS format\n");
260 
261  drives_help(0);
262 
263 #ifdef FATFS_TESTS
264  fatfs_help(0);
265 #endif
266  gpib_help(0);
267 
268 #ifdef LIF_SUPPORT
269  lif_help(0);
270 #endif
271 
272 #ifdef POSIX_TESTS
273  posix_help(0);
274 #endif
275 
276  printf(
277  "reset - reset emulator\n"
278  "setdate - set date - prompts for date\n");
279 #ifdef TELEDISK
280  td0_help(0);
281 #endif
282 
283  printf(
284  "time - display current date and time\n"
285  "\n");
286 
287 /* CPU debugging */
288  printf(
289 #ifdef DELAY_TESTS
290  "delay_tests\n"
291 #endif
292  "input - Toggle input parsing debugging\n"
293  "mem - Display free memory\n"
294  );
295 #ifdef PORTIO_TESTS
296  portio_help(0);
297 #endif
298  printf("\n");
299 
300 }
301 
309 void user_task(uint8_t gpib)
310 {
311  char *ptr;
312  int ind;
313  int i;
314  int argc;
315  int result = 0;
316  int ret;
317  char *argv[51];
318  char line[256];
319 
320 
321  if(gpib)
322  gpib_task();
323 
324  if(!kbhit(0))
325  return;
326 
327  printf("\n>");
328 
329  memset(line,0,sizeof(line)-1);
330 
331  fgets(line,sizeof(line)-2,stdin);
332  trim_tail(line);
333  argc = split_args(line,argv,50);
334 
335  if(debug_input)
336  {
337  printf("Argument count = %d\n", argc);
338  for(i=0;i<argc;++i)
339  printf(" [%s]\n", argv[i]);
340  }
341 
342  ind = 0;
343  result = 0;
344  ptr = argv[ind++];
345 
346  if(!ptr || argc < 1)
347  {
348  result = 1;
349  }
350 
351 #ifdef LCD_SUPPORT
352  else if (MATCHI(ptr,"backlight") )
353  {
354  uint32_t rgb;
355  ptr = argv[ind];
356  if(*ptr == '=')
357  ++ind;
358  rgb = get_value(argv[ind]);
359  result = lcd_backlight(rgb);
360  }
361 #endif
362 
363  else if ( MATCHI(ptr,"reset") )
364  {
365  cli();
366  uart_rx_flush(0);
367  cli();
368  MCUSR = (1 << EXTRF);
369  RESET();
370  // should not return!
371  result = 1;
372  }
373  else if ( MATCHI(ptr,"setdate" ) )
374  {
375  setdate();
376  display_clock();
377  result = 1;
378  }
379  else if ( MATCHI(ptr,"time") )
380  {
381  display_clock();
382  result = 1;
383  }
384  else if ( MATCHI(ptr,"help") || MATCHI(ptr,"?") )
385  {
386  help();
387  result = 1;
388  }
389 
390  if (MATCHI(ptr,"dir") )
391  {
392  int i;
393  int args = 0;
394  result = 1;
395  for(i=1;i<argc;++i)
396  {
397  if(fatfs_ls(argv[i]) == 0)
398  result = -1;
399  ++args;
400  }
401  if(!args)
402  {
403  if(fatfs_ls("") == 0)
404  result = -1;
405  }
406  }
407 
408 
409 
410 #ifdef POSIX_TESTS
411  if( (ret = posix_tests(argc,argv)) )
412  {
413  if(ret < 0)
414  result = -1;
415  else
416  result = 1;
417  }
418 #endif
419  if( (ret = drives_tests(argc,argv)) )
420  {
421  if(ret < 0)
422  result = -1;
423  else
424  result = 1;
425  }
426 
427 #ifdef FATFS_TESTS
428  if( (ret = fatfs_tests(argc,argv) ))
429  {
430  if(ret < 0)
431  result = -1;
432  else
433  result = 1;
434  }
435 #endif
436  if( (ret = gpib_tests(argc,argv)) )
437  {
438  if(ret < 0)
439  result = -1;
440  else
441  result = 1;
442 // Restore GPIB BUS states
444  }
445 
446 #ifdef LIF_SUPPORT
447  if( (ret = lif_tests(argc,argv)) )
448  {
449  if(ret < 0)
450  result = -1;
451  else
452  result = 1;
453  }
454 #endif
455 
456 /* CPU related tests */
457  if (MATCHI(ptr,"input") )
458  {
459  debug_input = !debug_input;
460  printf("Input debugging: %s\n", debug_input ? "ON" : "OFF");
461  result = 1;
462  }
463  else if ( MATCH(ptr,"mem") )
464  {
465  PrintFree();
466  result = 1;
467 
468  }
469 #ifdef PORTIO_TESTS
470  if( (ret = portio_tests(argc,argv)) )
471  {
472  if(ret < 0)
473  result = -1;
474  else
475  result = 1;
476  }
477 #endif
478 /* CPU related tests */
479 
480  if(result == 1)
481  printf("OK\n");
482  else if(result == -1)
483  printf("Command FAILED\n");
484  else
485  {
486  printf("Invalid Command\n");
487  printf(" Argument count = %d\n", argc);
488  for(i=0;i<argc;++i)
489  printf(" [%s]\n", argv[i]);
490  }
491 }
492 
493 #ifdef LCD_SUPPORT
494 void update_drive_counts()
495 {
496  char tmp[32];
497 
498  sprintf((char *) tmp, "SS80=%d AMIGO=%d",
500  (int) count_drive_types(AMIGO_TYPE) );
501  sprintf((char *) _line1, "%-16s", tmp);
502 }
503 #endif
504 
507 int main(void)
508 {
509  ts_t ts;
510  uint32_t actual,baud;
511 
512  clear_error(); // Clear error state
513 
514  GPIO_PIN_LOW(LED1); // Activity status
515 
517  gpib_bus_init();
518 
519 // BAUD setting moved to Makefile
520  baud = BAUD;
521 
524  actual = uart_init(0, baud); // Serial Port Initialize
525 
527  delayms(200);
528 
529  sep();
530  printf("Start\n");
531  printf("CPU Clock = %lu\n", F_CPU);
532  printf("Requested Baud Rate: %ld, Actual: %ld\n", (long)baud, (long)actual);
533 
534  init_timers();
535 
536  sep();
537  printf("HP85 Disk and Device Emulator\n");
538  printf(" (C) 2014-2020 by Mike Gore\n");
539  printf(" GNU version 3\n");
540  printf("-> https://github.com/magore/hp85disk\n");
541  printf(" GIT last pushed: %s\n", GIT_VERSION);
542  printf(" Last updated file: %s\n", LOCAL_MOD);
543 
544  sep();
545  PrintFree();
546 
547  sep();
548  // delayms(200); ///@brief Power up delay
549 
551  printf("Initializing SPI bus\n");
553 
555  printf("Initializing I2C bus\n");
556  i2c_init(100000);
557  sep();
558 
560  printf("Initializing RTC\n");
561  clock_clear();
562  printf("Clock cleared\n");
563  clock_getres(0, (ts_t *) &ts);
564  printf("System Task Interrupt Rate: %ld Nano Seconds\n", (long) ts.tv_nsec);
565 
566 // Timezone offset we just use local time
567  initialize_clock(0);
568  display_clock();
569  sep();
570 
572 #ifdef LCD_SUPPORT
573  lcd_setup();
574 #endif
575 
577  printf("MMC initializing start\n");
578  if ( !mmc_init(1) )
579  printf("MMC initialized\n");
580  sep();
581 
583  gpib_bus_init();
584  printf("GPIB bus initialized\n");
585 
587  printer_init();
588  printf("Printer initialized\n");
589 
591  printf("GPIB Timer Setup\n");
592  gpib_timer_init();
593  printf("GPIB Timer initialized\n");
594 
596  gpib_file_init();
597  printf("GPIB File init done\n");
598 
601  gpib_state_init();
602  printf("GPIB State init done\n");
603  sep();
604 
607  sep();
608 
610  printf("debuglevel = %04xH\n",(int)debuglevel);
611  sep();
612 
614  format_drives();
615 
616 #ifdef LCD_SUPPORT
617  update_drive_counts();
618  sprintf((char *) _line2, "%-16s", "(C)Mike Gore");
619 
620  i2c_task_run();
621  delayms(1000);
622  if(!i2c_task.done || i2c_task.error )
623  {
625  printf("I2C LCD is NOT attached!\n");
626  }
627 #endif
628 
630  printf("Starting GPIB TASK\n");
631 
632 #if 0
633  // Test new printf S string type
634  printf("memx printf:%S\n", PSTR("This is a program memory message" ) );
635  printf("memx printf:%S\n", PSTR_X("This is a __memx program memory message") );
636 #endif
637 
641  while ( 1)
642  {
643  user_task(1);
644  }
645 }
get_value
MEMSPACE int32_t get_value(char *str)
get a number
Definition: parsing.c:432
i2c_task_op
i2c_op_t * i2c_task_op[I2C_OPS]
I2C task list.
Definition: i2c.c:33
uart_init
uint32_t uart_init(uint8_t uart, uint32_t baud)
UART initialization function that works with avr-libc functions.
Definition: rs232.c:117
sprintf
#define sprintf(s, format, args...)
Definition: user_config.h:73
i2c_task_done
int8_t i2c_task_done()
Are all i2c_task_op[] pointers done sending/receiving ?
Definition: i2c.c:390
printf
MEMSPACE int printf(const char *format,...)
stdin
#define stdin
define stdin, stdout and stderr
Definition: posix.h:273
tm::tm_min
int tm_min
Definition: time.h:43
init_timers
MEMSPACE void init_timers()
Setup all timers tasksi and enable interrupts.
Definition: timer.c:299
lif_help
MEMSPACE void lif_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
Definition: lifutils.c:111
debuglevel
int debuglevel
Debug flag - used to log GPIB and emulator messages.
Definition: gpib_task.c:33
MATCH
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.
Definition: parsing.c:143
MATCHI
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
Definition: parsing.c:183
drives_tests
int drives_tests(int argc, char *argv[])
GPIB user tests User invoked GPIB functions and tasks.
Definition: drives.c:1798
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
drives_help
void drives_help(int8_t full)
Help Menu for drives and configuration help See: int drives_tests(char *str)
Definition: drives.c:1760
fgets
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:432
PSTR_X
#define PSTR_X(a)
Definition: mathio.h:115
ss80.h
SS80 disk emulator for HP85 disk emulator project for AVR.
clock_clear
MEMSPACE void clock_clear()
clear time and timezone to 0.
Definition: timer.c:222
i2c_display_task_errors
void i2c_display_task_errors()
Display any task errors.
Definition: i2c.c:684
i2c_init
void i2c_init(uint32_t speed)
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks.
Definition: i2c.c:316
gmtime
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
Definition: time.c:471
amigo.h
AMIGO disk emulator for HP85 disk emulator project for AVR.
gpib_timer_init
void gpib_timer_init()
Install GPIB timers, Elapsed time and Timeout tasks.
Definition: gpib_hal.c:29
gpib_task
void gpib_task(void)
Top most main GPIB device emulator task. This is main() for GPIB state machine loop All tasks are dis...
Definition: gpib_task.c:456
tm::tm_sec
int tm_sec
Definition: time.h:42
i2c_task_t::done
uint8_t done
Definition: i2c.h:55
user_task
void user_task(uint8_t gpib)
User command handler - called as main task.
Definition: main.c:309
tm::tm_mon
int tm_mon
Definition: time.h:46
MMC_SLOW
#define MMC_SLOW
Definition: user_config.h:26
tm::tm_mday
int tm_mday
Definition: time.h:45
trim_tail
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
Definition: parsing.c:49
tm::tm_hour
int tm_hour
Definition: time.h:44
td0_help
void td0_help(int full)
Definition: td02lif.c:1556
uart_rx_flush
void uart_rx_flush(uint8_t uart)
Flush receive ring buffer for specified uart.
Definition: rs232.c:22
clock_getres
MEMSPACE int clock_getres(clockid_t clk_id __attribute__((unused)), struct timespec *res)
Read clock time resolution into struct timepec *ts - POSIX function.
Definition: timer.c:335
posix_tests.h
POSIX wrapper for FatFS.
timespec::tv_nsec
long tv_nsec
Definition: time.h:88
fatfs_tests
MEMSPACE int fatfs_tests(int argc, char *argv[])
FatFs test parser.
Definition: fatfs_tests.c:103
initialize_clock
MEMSPACE void initialize_clock(int minwest)
initialize system time - if we have an RTC use it
Definition: time.c:1184
help
void help()
======================================
Definition: main.c:249
setdate
MEMSPACE int setdate(void)
Set date and time by prompting user.
Definition: time.c:901
defines.h
GPIB, AMIGO, SS80 and device defines.
i2c_task_op_add
i2c_op_t * i2c_task_op_add(uint8_t address, uint8_t mode, uint8_t *buf, uint8_t len)
I2C setup new OP but do not run it yet.
Definition: i2c.c:135
i2c_task_init
void i2c_task_init()
Initialize I2C task op list NOTE: We ASSUME all i2c_task_op[].buf are statically allocated.
Definition: i2c.c:69
lif_tests
MEMSPACE int lif_tests(int argc, char *argv[])
LIF user tests.
Definition: lifutils.c:139
timespec::tv_sec
time_t tv_sec
Definition: time.h:87
posix_help
MEMSPACE void posix_help(int full)
Definition: posix_tests.c:46
AMIGO_TYPE
@ AMIGO_TYPE
Definition: drives.h:249
printer_init
void printer_init()
Initialize plotter structures and state.
Definition: printer.c:98
i2c_task_run
void i2c_task_run()
Run all valid i2c_task_op[] tasks.
Definition: i2c.c:225
LED1
#define LED1
Definition: gpib_hal.h:75
gpib_tests
int gpib_tests(int argc, char *argv[])
GPIB user tests User invoked GPIB functions and tasks.
Definition: gpib_tests.c:63
gpib_task.h
High level GPIB command handler for HP85 disk emulator project for AVR.
printer.h
HPGL printer capture code for HP85 disk emulator project for AVR.
copyright
void copyright(void)
tm_mon_to_ascii
MEMSPACE char * tm_mon_to_ascii(int i)
Get string Short name of Month from month number.
Definition: time.c:114
clear_error
void clear_error()
Set error condition.
Definition: hal.c:513
portio_tests
int portio_tests(int argc __attribute__((unused)), char *argv[])
PORT user tests User invoked PORT functions and tasks.
Definition: portio.c:44
clock_gettime
MEMSPACE int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
Generic clock_gettime() function WITHOUT high resolution.
Definition: timer.c:386
gpib_init_devices
void gpib_init_devices(void)
Initialize ALL emulated devices SS80, AMIGO and printer.
Definition: gpib_task.c:340
i2c_fn
uint8_t i2c_fn(uint8_t address, uint8_t mode, uint8_t *buf, uint8_t len)
I2C setup new OP but do not run it yet.
Definition: i2c.c:407
RESET_t
void(* RESET_t)(void)
Display Copyright.
Definition: main.c:46
sep
MEMSPACE void sep()
print seperator
Definition: parsing.c:35
delayms
void delayms(uint32_t ms)
Delay miliseconds using AVR acr-libc _delay_us() function.
Definition: delay.c:53
i2c_task_t::error
uint8_t error
Definition: i2c.h:56
gpib_file_init
void gpib_file_init()
Read Configuration File.
Definition: gpib_task.c:39
kbhit
#define kbhit(uart)
Definition: rs232.h:45
lifutils.h
LIF file utilities.
display_clock
MEMSPACE void display_clock()
Display system time and optionally RTC time.
Definition: time.c:1234
gpib_user_task
void gpib_user_task()
======================================
Definition: main.c:236
main
int main(void)
main() for gpib project
Definition: main.c:507
mmc_ins_status
MEMSPACE int mmc_ins_status()
MMC Card Inserted status.
Definition: mmc_hal.c:328
gpib_help
void gpib_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
Definition: gpib_tests.c:33
format_drives
void format_drives()
Format devices that have no image file.
Definition: drives.c:1669
mmc_init
MEMSPACE int mmc_init(int verbose)
Initialize MMC and FatFs interface, display diagnostics.
Definition: mmc_hal.c:219
SS80_TYPE
@ SS80_TYPE
Definition: drives.h:251
display_Addresses
void display_Addresses(int verbose)
Display Configuration device address saummary.
Definition: drives.c:778
i2c_task
i2c_task_t i2c_task
I2C task state.
Definition: i2c.c:31
PrintFree
void PrintFree()
Display AVR free memory of each type>
Definition: ram.c:69
tm
POSIX struct tm.
Definition: time.h:40
portio.h
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.
fatfs_help
MEMSPACE void fatfs_help(int full)
Display FatFs test diagnostics help menu.
Definition: fatfs_tests.c:45
gpib_tests.h
GPIB diagnostic tests for HP85 disk emulator project for AVR.
timespec
POSIX timespec.
Definition: time.h:85
posix_tests
MEMSPACE int posix_tests(int argc, char *argv[])
POSIX tests.
Definition: posix_tests.c:93
gpib_hal.h
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
gpib_bus_init
void gpib_bus_init()
Initialize/Release GPIB Bus control lines Used for Power ON, Reset or IFC LOW reset conditions.
Definition: gpib.c:229
count_drive_types
int8_t count_drive_types(uint8_t type)
Count number of devices of a sertain type.
Definition: drives.c:1005
i2c.h
split_args
MEMSPACE int split_args(char *str, char *argv[], int max)
Split string into arguments stored in argv[] We split source string into arguments Warning: source st...
Definition: parsing.c:260
spi_init
void spi_init(uint32_t clock, int pin)
Definition: hal.c:328
GPIO_B3
#define GPIO_B3
Definition: gpio-1284p.h:23
normalize
MEMSPACE time_t normalize(tm_t *t, int normalize_to_timezone)
Normalize POSIX tm_t *t struct and convert to epoch time Note: does not deal with DST - by design.
Definition: time.c:655
snprintf
#define snprintf(s, size, format, args...)
Definition: user_config.h:72
portio_help
void portio_help(int full)
Help Menu for AVR PORT IO functions See: int port_tests(char *str)
Definition: portio.c:25
fatfs_ls
MEMSPACE int fatfs_ls(char *name)
Definition: fatfs_tests.c:373
gpib_state_init
void gpib_state_init(void)
Reset GPIB states and related variables.
Definition: gpib.c:389