diff loadtools/compalram.c @ 0:e7502631a0f9

initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 Jun 2016 00:13:35 +0000
parents
children 8c011177adb9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/loadtools/compalram.c	Sat Jun 11 00:13:35 2016 +0000
@@ -0,0 +1,26 @@
+/*
+ * This module contains the main() function for fc-compalram, a trivial
+ * utility that feeds a binary download image to Compal's bootloader
+ * and then switches into serial tty pass-through.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+extern char *target_ttydev;
+
+main(argc, argv)
+	char **argv;
+{
+	if (argc != 3) {
+		fprintf(stderr, "usage: fc-compalram ttyport image.bin\n");
+		exit(1);
+	}
+	target_ttydev = argv[1];
+	set_compalstage_fullpath(argv[2]);
+
+	open_target_serial();
+	perform_compal_stage(0);
+	tty_passthru();
+	exit(0);
+}