view target-utils/pirexplore/cmdtab.c @ 698:9ecbf1bf2e1b

fc-iram: added '+' to getopt magic string like in fc-xram Both fc-iram and fc-xram now support secondary program invokation. If the user needs to pass some options to the secondary program, we don't want fc-iram or fc-xram to claim these options as its own, thus we need to stop getopt() from reordering arguments. This fix was already implemented in fc-xram a long time ago, but the issue was overlooked when secondary program invokation ability was added to fc-iram.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 31 Mar 2020 03:23:26 +0000
parents 44a1de4264d8
children
line wrap: on
line source

#include "cmdtab.h"

extern void cmd_abbr();
extern void cmd_abbw();
extern void cmd_baud_switch();
extern void cmd_blit();
extern void cmd_buz();
extern void cmd_buzlev();
extern void cmd_dieid();
extern void cmd_find();
extern void cmd_flashid();
extern void cmd_jump();
extern void cmd_lcdfill();
extern void cmd_lcdinit();
extern void cmd_lcdtest();
extern void cmd_r8();
extern void cmd_r16();
extern void cmd_r32();
extern void cmd_rtc();
extern void cmd_rtccomp();
extern void cmd_spca();
extern void cmd_spcainit();
extern void cmd_w8();
extern void cmd_w16();
extern void cmd_w32();

extern void abb_init();
extern void abb_power_off();
extern void abb_unlock_page2();
extern void cmd_memdump_human();
extern void tiffs_init();

const struct cmdtab cmdtab[] = {
	{"abbinit", abb_init},
	{"abbpage2", abb_unlock_page2},
	{"abbr", cmd_abbr},
	{"abbw", cmd_abbw},
	{"baud", cmd_baud_switch},
	{"blit", cmd_blit},
	{"buz", cmd_buz},
	{"buzlev", cmd_buzlev},
	{"dieid", cmd_dieid},
	{"dump", cmd_memdump_human},
	{"ffsinit", tiffs_init},
	{"find", cmd_find},
	{"flashid", cmd_flashid},
	{"jump", cmd_jump},
	{"lcdfill", cmd_lcdfill},
	{"lcdinit", cmd_lcdinit},
	{"lcdtest", cmd_lcdtest},
	{"poweroff", abb_power_off},
	{"r8", cmd_r8},
	{"r16", cmd_r16},
	{"r32", cmd_r32},
	{"rtc", cmd_rtc},
	{"rtccomp", cmd_rtccomp},
	{"spca", cmd_spca},
	{"spcainit", cmd_spcainit},
	{"vibe", cmd_buz},
	{"w8", cmd_w8},
	{"w16", cmd_w16},
	{"w32", cmd_w32},
	{0, 0}
};