comparison rvinterf/tmsh/misc.c @ 260:c146f38d2b5f

rvinterf subdir structure made a little more sensible
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 05 Feb 2014 04:02:13 +0000
parents rvinterf/etm/misc.c@c413e791595a
children
comparison
equal deleted inserted replaced
259:35113b1964d3 260:c146f38d2b5f
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 }