1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-07-07 23:03:16 +03:00
ben-blinkenlights/ubbctl/ubbctl.c

90 lines
1.5 KiB
C
Raw Normal View History

2013-01-06 13:57:12 +02:00
/*
* ubbctl.c - Set and query UBB signals
*
* Written 2013 by Werner Almesberger
* Copyright 2013 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
2013-01-04 10:40:19 +02:00
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
2013-01-04 10:40:19 +02:00
#include <stdio.h>
#include <unistd.h>
2013-01-04 10:40:19 +02:00
#include <ubb/ubb.h>
static struct pin {
const char *name;
uint32_t mask;
} pins[] = {
{ "nPWR", UBB_nPWR },
{ "DAT2", UBB_DAT2 },
{ "DAT3", UBB_DAT3 },
{ "CMD", UBB_CMD },
{ "CLK", UBB_CLK },
{ "DAT0", UBB_DAT0 },
{ "DAT1", UBB_DAT1 },
{ NULL }
};
static void show_pins(void)
2013-01-04 10:40:19 +02:00
{
const struct pin *p;
int pin, set;
2013-01-04 10:40:19 +02:00
for (p = pins; p->name; p++) {
printf("%s%s=", p == pins ? "" : " ", p->name);
pin = PIN(p->mask);
if (PDFUN & p->mask) {
2013-01-04 10:40:19 +02:00
printf("FN");
} else if (PDDIR & p->mask) {
set = !!(PDDAT & p->mask);
if (pin != set)
printf("%d!", set);
} else {
2013-01-04 10:40:19 +02:00
putchar(PDPULL & p->mask ? 'Z' : 'R');
}
printf("%d", pin);
2013-01-04 10:40:19 +02:00
}
printf("\n");
}
static void usage(const char *name)
{
fprintf(stderr,
"usage: %s\n"
, name);
exit(1);
}
int main(int argc, char **argv)
{
int c;
while ((c = getopt(argc, argv, "")) != EOF)
switch (c) {
default:
usage(*argv);
}
switch (argc-optind) {
case 0:
break;
default:
usage(*argv);
}
ubb_open(UBB_ALL);
show_pins();
2013-01-04 10:40:19 +02:00
return 0;
}