1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 09:24:05 +02:00

fw/antorcha.c: cleanup

- rename "param" to send_param"
- move "map" from add_param to compilation unit scope
This commit is contained in:
Werner Almesberger 2012-06-27 03:32:10 -03:00
parent 558f5a7503
commit fe3ff8d5e1

View File

@ -296,16 +296,11 @@ static struct params params = {
.tp_bwd_pix = TP_BWD_PIX_DEFAULT, .tp_bwd_pix = TP_BWD_PIX_DEFAULT,
}; };
static int have_params = 0; static struct map {
static void add_param(const char *arg, const char *eq)
{
struct map {
const char *name; /* NULL to mark end */ const char *name; /* NULL to mark end */
void *p; void *p;
int bytes; /* 1, 2, or 4 */ int bytes; /* 1, 2, or 4 */
} map[] = { } map[] = {
{ "xa_high", &params.xa_high, 2 }, { "xa_high", &params.xa_high, 2 },
{ "xa_low", &params.xa_low, 2 }, { "xa_low", &params.xa_low, 2 },
{ "px_fwd_left", &params.px_fwd_left, 1 }, { "px_fwd_left", &params.px_fwd_left, 1 },
@ -317,7 +312,13 @@ static void add_param(const char *arg, const char *eq)
{ "tp_fwd_pix", &params.tp_fwd_pix, 2 }, { "tp_fwd_pix", &params.tp_fwd_pix, 2 },
{ "tp_bwd_pix", &params.tp_bwd_pix, 2 }, { "tp_bwd_pix", &params.tp_bwd_pix, 2 },
{ NULL } { NULL }
}; };
static int have_params = 0;
static void add_param(const char *arg, const char *eq)
{
const struct map *m; const struct map *m;
size_t len; size_t len;
unsigned long v; unsigned long v;
@ -355,7 +356,7 @@ static void add_param(const char *arg, const char *eq)
} }
static void param(struct atrf_dsc *dsc) static void send_param(struct atrf_dsc *dsc)
{ {
uint8_t payload[PAYLOAD]; uint8_t payload[PAYLOAD];
@ -550,7 +551,7 @@ int main(int argc, char **argv)
usage(*argv); usage(*argv);
if (optind != argc) if (optind != argc)
image(dsc, argv[optind]); image(dsc, argv[optind]);
param(dsc); send_param(dsc);
} }
return 0; return 0;