HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
14 #include <user_config.h>
46 typedef void (*
RESET_t)(void) __attribute__((noreturn));
55 int8_t debug_input = 0;
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);
83 uint8_t _cmd1[2] = { 0xfe, 0x80 };
84 uint8_t _line1 [21] = {
' ' };
85 uint8_t _cmd2[2] = { 0xfe, 0xC0 };
86 uint8_t _line2 [21] = {
' ' };
93 static int16_t lcd_display_time = 0;
109 char *lcd_time(
tm_t *t,
char *buf,
int max)
114 snprintf(buf,max-1,
"%s %2d %02d:%02d:%02d",
126 uint8_t _backlight[5] = { 0x7c,
'+', 0x80, 0x80, 0x80 };
127 uint8_t lcd_backlight(uint32_t rgb)
130 _backlight[2] = 0xff & (rgb >> 16);
131 _backlight[3] = 0xff & (rgb >> 8);
132 _backlight[4] = 0xff & (rgb );
134 if(!
i2c_fn(0x72, TW_WRITE, _backlight,
sizeof(_backlight)) )
137 printf(
"I2C LCD is NOT attached!\n");
152 printf(
"I2C LCD initialization start\n");
155 printf(
"lcd_task init failed\n");
164 sprintf((
char *) _line1,
"%-16s",
"HP85Disk V2");
165 sprintf((
char *) _line2,
"%-16s",
"(C)Mike Gore");
182 printf(
"I2C LCD is NOT attached!\n");
200 sprintf((
char *) _line2,
"%-16s",
"SD Card Fault");
214 #endif // LCD_SUPPORT
226 if(lcd_display_time > 100)
228 lcd_display_time = 0;
240 #endif // LCD_SUPPORT
254 printf(
"help - displays this help menu\n");
257 printf(
"backlight 0xRRGGBB - format 0x[00-FF][00-FF][00-FF]\n");
259 printf(
"dir Directory list MSDOS format\n");
277 "reset - reset emulator\n"
278 "setdate - set date - prompts for date\n");
284 "time - display current date and time\n"
292 "input - Toggle input parsing debugging\n"
293 "mem - Display free memory\n"
329 memset(line,0,
sizeof(line)-1);
337 printf(
"Argument count = %d\n", argc);
339 printf(
" [%s]\n", argv[i]);
352 else if (
MATCHI(ptr,
"backlight") )
359 result = lcd_backlight(rgb);
363 else if (
MATCHI(ptr,
"reset") )
368 MCUSR = (1 << EXTRF);
373 else if (
MATCHI(ptr,
"setdate" ) )
379 else if (
MATCHI(ptr,
"time") )
459 debug_input = !debug_input;
460 printf(
"Input debugging: %s\n", debug_input ?
"ON" :
"OFF");
463 else if (
MATCH(ptr,
"mem") )
482 else if(result == -1)
483 printf(
"Command FAILED\n");
486 printf(
"Invalid Command\n");
487 printf(
" Argument count = %d\n", argc);
489 printf(
" [%s]\n", argv[i]);
494 void update_drive_counts()
498 sprintf((
char *) tmp,
"SS80=%d AMIGO=%d",
501 sprintf((
char *) _line1,
"%-16s", tmp);
510 uint32_t actual,baud;
531 printf(
"CPU Clock = %lu\n", F_CPU);
532 printf(
"Requested Baud Rate: %ld, Actual: %ld\n", (
long)baud, (
long)actual);
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);
551 printf(
"Initializing SPI bus\n");
555 printf(
"Initializing I2C bus\n");
560 printf(
"Initializing RTC\n");
562 printf(
"Clock cleared\n");
564 printf(
"System Task Interrupt Rate: %ld Nano Seconds\n", (
long) ts.
tv_nsec);
577 printf(
"MMC initializing start\n");
579 printf(
"MMC initialized\n");
584 printf(
"GPIB bus initialized\n");
588 printf(
"Printer initialized\n");
591 printf(
"GPIB Timer Setup\n");
593 printf(
"GPIB Timer initialized\n");
597 printf(
"GPIB File init done\n");
602 printf(
"GPIB State init done\n");
617 update_drive_counts();
618 sprintf((
char *) _line2,
"%-16s",
"(C)Mike Gore");
625 printf(
"I2C LCD is NOT attached!\n");
630 printf(
"Starting GPIB TASK\n");
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") );
MEMSPACE int32_t get_value(char *str)
get a number
i2c_op_t * i2c_task_op[I2C_OPS]
I2C task list.
uint32_t uart_init(uint8_t uart, uint32_t baud)
UART initialization function that works with avr-libc functions.
#define sprintf(s, format, args...)
int8_t i2c_task_done()
Are all i2c_task_op[] pointers done sending/receiving ?
MEMSPACE int printf(const char *format,...)
#define stdin
define stdin, stdout and stderr
MEMSPACE void init_timers()
Setup all timers tasksi and enable interrupts.
MEMSPACE void lif_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
int debuglevel
Debug flag - used to log GPIB and emulator messages.
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
int drives_tests(int argc, char *argv[])
GPIB user tests User invoked GPIB functions and tasks.
void drives_help(int8_t full)
Help Menu for drives and configuration help See: int drives_tests(char *str)
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
SS80 disk emulator for HP85 disk emulator project for AVR.
MEMSPACE void clock_clear()
clear time and timezone to 0.
void i2c_display_task_errors()
Display any task errors.
void i2c_init(uint32_t speed)
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks.
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
AMIGO disk emulator for HP85 disk emulator project for AVR.
void gpib_timer_init()
Install GPIB timers, Elapsed time and Timeout tasks.
void gpib_task(void)
Top most main GPIB device emulator task. This is main() for GPIB state machine loop All tasks are dis...
void user_task(uint8_t gpib)
User command handler - called as main task.
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
void uart_rx_flush(uint8_t uart)
Flush receive ring buffer for specified uart.
MEMSPACE int clock_getres(clockid_t clk_id __attribute__((unused)), struct timespec *res)
Read clock time resolution into struct timepec *ts - POSIX function.
MEMSPACE int fatfs_tests(int argc, char *argv[])
FatFs test parser.
MEMSPACE void initialize_clock(int minwest)
initialize system time - if we have an RTC use it
void help()
======================================
MEMSPACE int setdate(void)
Set date and time by prompting user.
GPIB, AMIGO, SS80 and device defines.
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.
void i2c_task_init()
Initialize I2C task op list NOTE: We ASSUME all i2c_task_op[].buf are statically allocated.
MEMSPACE int lif_tests(int argc, char *argv[])
LIF user tests.
MEMSPACE void posix_help(int full)
void printer_init()
Initialize plotter structures and state.
void i2c_task_run()
Run all valid i2c_task_op[] tasks.
int gpib_tests(int argc, char *argv[])
GPIB user tests User invoked GPIB functions and tasks.
High level GPIB command handler for HP85 disk emulator project for AVR.
HPGL printer capture code for HP85 disk emulator project for AVR.
MEMSPACE char * tm_mon_to_ascii(int i)
Get string Short name of Month from month number.
void clear_error()
Set error condition.
int portio_tests(int argc __attribute__((unused)), char *argv[])
PORT user tests User invoked PORT functions and tasks.
MEMSPACE int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
Generic clock_gettime() function WITHOUT high resolution.
void gpib_init_devices(void)
Initialize ALL emulated devices SS80, AMIGO and printer.
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.
void(* RESET_t)(void)
Display Copyright.
MEMSPACE void sep()
print seperator
void delayms(uint32_t ms)
Delay miliseconds using AVR acr-libc _delay_us() function.
void gpib_file_init()
Read Configuration File.
MEMSPACE void display_clock()
Display system time and optionally RTC time.
void gpib_user_task()
======================================
int main(void)
main() for gpib project
MEMSPACE int mmc_ins_status()
MMC Card Inserted status.
void gpib_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
void format_drives()
Format devices that have no image file.
MEMSPACE int mmc_init(int verbose)
Initialize MMC and FatFs interface, display diagnostics.
void display_Addresses(int verbose)
Display Configuration device address saummary.
i2c_task_t i2c_task
I2C task state.
void PrintFree()
Display AVR free memory of each type>
MEMSPACE int set_timers(void(*handler)(void), int timer __attribute__((unused)))
Install a user timer task.
GPIB emulator for HP85 disk emulator project for AVR.
MEMSPACE void fatfs_help(int full)
Display FatFs test diagnostics help menu.
GPIB diagnostic tests for HP85 disk emulator project for AVR.
MEMSPACE int posix_tests(int argc, char *argv[])
POSIX tests.
GPIB emulator hardwware layer for HP85 disk emulator project for AVR.
void gpib_bus_init()
Initialize/Release GPIB Bus control lines Used for Power ON, Reset or IFC LOW reset conditions.
int8_t count_drive_types(uint8_t type)
Count number of devices of a sertain type.
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...
void spi_init(uint32_t clock, int pin)
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.
#define snprintf(s, size, format, args...)
void portio_help(int full)
Help Menu for AVR PORT IO functions See: int port_tests(char *str)
MEMSPACE int fatfs_ls(char *name)
void gpib_state_init(void)
Reset GPIB states and related variables.