diff loadtools/ltdispatch.c @ 52:b015036286f3

fc-loadtool: fast-baud communication with loadagent implemented, works!
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 23 Jun 2013 04:34:22 +0000
parents 65111e6eee9e
children 10996c267de4
line wrap: on
line diff
--- a/loadtools/ltdispatch.c	Sun Jun 23 03:38:09 2013 +0000
+++ b/loadtools/ltdispatch.c	Sun Jun 23 04:34:22 2013 +0000
@@ -8,6 +8,7 @@
 #include <strings.h>
 #include <stdlib.h>
 
+extern int cmd_baud();
 extern int cmd_crc32();
 extern int cmd_dump2bin();
 extern int cmd_dump2srec();
@@ -21,6 +22,7 @@
 	int maxargs;
 	int (*func)();
 } cmdtab[] = {
+	{"baud", 0, 1, cmd_baud},
 	{"crc32", 2, 2, cmd_crc32},
 	{"dump", 2, 2, loadtool_cmd_passthru},
 	{"dump2bin", 3, 3, cmd_dump2bin},