comparison rvinterf/tmsh/misc.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 2159f260ed13
comparison
equal deleted inserted replaced
-1:000000000000 0:e7502631a0f9
1 /*
2 * Commands which don't belong anywhere else
3 */
4
5 #include <sys/types.h>
6 #include <stdio.h>
7 #include <string.h>
8 #include <strings.h>
9 #include <stdlib.h>
10 #include "pktmux.h"
11 #include "etm.h"
12 #include "tmffs1.h"
13
14 void
15 cmd_check_ffs1(argc, argv)
16 char **argv;
17 {
18 u_char cmdpkt[5];
19
20 cmdpkt[1] = ETM_FFS1;
21 cmdpkt[2] = FPI_TMFFS_VERSION;
22 cmdpkt[3] = FPI_END;
23 send_etm_cmd(cmdpkt, 3);
24 }