view target-utils/simtest/cmdtab.c @ 752:c79aaed75bd8

compile-fc-batt: allow possible third field in source lines Battery tables maintained in the fc-battery-conf repository will now have a third field added, defining thresholds for the battery bars icon, and there will be a new utility to compile them into the new /etc/batterytab2 file read by the FC Tourmaline version of our FCHG driver. For backward compatibility with the original Magnetite version of FCHG, compile-fc-batt remains the tool for compiling the original /etc/batterytab file format, and it needs to ignore the newly added third field in battery table sources.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 05 Nov 2020 20:37:55 +0000
parents 44a1de4264d8
children
line wrap: on
line source

#include "cmdtab.h"

extern void cmd_abbr();
extern void cmd_abbw();
extern void cmd_jump();
extern void cmd_poll();
extern void cmd_r8();
extern void cmd_r16();
extern void cmd_r32();
extern void cmd_reset();
extern void cmd_setup();
extern void cmd_volt();
extern void cmd_w8();
extern void cmd_w16();
extern void cmd_w32();

extern void cmd_memdump_human();

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

const struct cmdtab cmdtab[] = {
	{"abbinit", abb_init},
	{"abbpage2", abb_unlock_page2},
	{"abbr", cmd_abbr},
	{"abbw", cmd_abbw},
	{"dump", cmd_memdump_human},
	{"jump", cmd_jump},
	{"poll", cmd_poll},
	{"poweroff", abb_power_off},
	{"r8", cmd_r8},
	{"r16", cmd_r16},
	{"r32", cmd_r32},
	{"reset", cmd_reset},
	{"setup", cmd_setup},
	{"volt", cmd_volt},
	{"w8", cmd_w8},
	{"w16", cmd_w16},
	{"w32", cmd_w32},
	{0, 0}
};