view rvinterf/etmsync/fscmdtab.c @ 853:ae254ffeaec3

AT command interface works! The cause of the breakage was the same Nucleus API issue with NU_Create_Timer() which we encountered at the very beginning of this project with Riviera timers: the code in uartfax.c from TCS211 was passing 0 as the initial dummy value for the timer duration, and our FreeNucleus version doesn't like it. The fix is the same: pass 1 as the initial dummy value instead.
author Space Falcon <falcon@ivan.Harhan.ORG>
date Thu, 30 Apr 2015 01:46:26 +0000
parents 61c68a55f2a2
children 42719fa3e6af
line wrap: on
line source

/*
 * fc-fsio command dispatch table
 */

#include "cmdtab.h"

extern int cmd_cpout();
extern int cmd_cpout_file();
extern int cmd_delete();
extern int cmd_exec();
extern int cmd_exit();
extern int cmd_fd();
extern int cmd_ffs2ver();
extern int cmd_format();
extern int cmd_fwrite();
extern int cmd_hd();
extern int cmd_ll();
extern int cmd_ls();
extern int cmd_mkdir();
extern int cmd_preformat();
extern int cmd_readlink();
extern int cmd_set_imeisv();
extern int cmd_set_pcm_string();
extern int cmd_stat();
extern int cmd_symlink();
extern int cmd_uploadfs();
extern int cmd_upload_file();
extern int cmd_upload_subtree();

struct cmdtab cmdtab[] = {
	{"cpout", 2, 2, cmd_cpout},
	{"cpout-file", 2, 2, cmd_cpout_file},
	{"delete", 1, 1, cmd_delete},
	{"exec", 1, 1, cmd_exec},
	{"exit", 0, 0, cmd_exit},
	{"fd", 2, 3, cmd_fd},
	{"ffs2ver", 0, 0, cmd_ffs2ver},
	{"format", 1, 1, cmd_format},
	{"fwrite", 3, 3, cmd_fwrite},
	{"hd", 1, 1, cmd_hd},
	{"ll", 1, 1, cmd_ll},
	{"ls", 1, 1, cmd_ls},
	{"mkdir", 1, 1, cmd_mkdir},
	{"preformat", 0, 0, cmd_preformat},
	{"readlink", 1, 1, cmd_readlink},
	{"set-imeisv", 2, 2, cmd_set_imeisv},
	{"set-pcm-string", 2, 2, cmd_set_pcm_string},
	{"stat", 1, 1, cmd_stat},
	{"symlink", 2, 2, cmd_symlink},
	{"upload-file", 2, 2, cmd_upload_file},
	{"upload-fs", 1, 1, cmd_uploadfs},
	{"upload-subtree", 2, 2, cmd_upload_subtree},
	{0, 0, 0, 0}
};