#include "version.h"
#include "hexdump.h"
#include "hmcfgusb.h"
+#include "util.h"
#define PID_FILE "/var/run/hmland.pid"
+#define POLL_TIMEOUT_MS 250 /* Wake up device/bus at least once every 250ms */
#define DEFAULT_REBOOT_SECONDS 86400
#define LAN_READ_CHUNK_SIZE 2048
/* Don't allow remote clients to consume all of our memory */
static int reboot_set = 0;
static uint8_t *lan_read_buf = NULL;
static int lan_read_buflen = 0;
+static char *serial = NULL;
struct queued_rx {
char *rx;
static int format_part_out(uint8_t **inpos, int inlen, uint8_t **outpos, int outlen, int len, int flags)
{
- const uint8_t nibble[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
- 'A', 'B', 'C', 'D', 'E', 'F'};
uint8_t *buf_out = *outpos;
uint8_t *outend = *outpos + outlen;
uint8_t *inend = *inpos + inlen;
CHECK_AVAIL(len);
CHECK_SPACE(len*2);
for (i = 0; i < len; i++) {
- **outpos = nibble[((**inpos) & 0xf0) >> 4];
+ **outpos = nibble_to_ascii(((**inpos) & 0xf0) >> 4);
*outpos += 1;
- **outpos = nibble[((**inpos) & 0xf)];
+ **outpos = nibble_to_ascii(((**inpos) & 0xf));
*inpos += 1; *outpos += 1;
}
} else {
return *outpos - buf_out;
}
-static uint8_t ascii_to_nibble(uint8_t a)
-{
- uint8_t c = 0x00;
-
- if ((a >= '0') && (a <= '9')) {
- c = a - '0';
- } else if ((a >= 'A') && (a <= 'F')) {
- c = (a - 'A') + 10;
- } else if ((a >= 'a') && (a <= 'f')) {
- c = (a - 'a') + 10;
- }
-
- return c;
-}
-
static int parse_part_in(uint8_t **inpos, int inlen, uint8_t **outpos, int outlen, int flags)
{
uint8_t *buf_out = *outpos;
hmcfgusb_set_debug(debug);
- dev = hmcfgusb_init(hmlan_format_out, &fd_out);
+ dev = hmcfgusb_init(hmlan_format_out, &fd_out, serial);
if (!dev) {
fprintf(stderr, "Can't initialize HM-CFG-USB!\n");
return 0;
while(!quit) {
int fd;
- fd = hmcfgusb_poll(dev, 1000); /* Wakeup device/bus at least once a second */
+ fd = hmcfgusb_poll(dev, POLL_TIMEOUT_MS);
if (fd >= 0) {
if (fd == master_socket) {
int client;
fprintf(stderr, "\t-p n\t\tlisten on port n (default: 1000)\n");
fprintf(stderr, "\t-r n\t\treboot HM-CFG-USB after n seconds (0: no reboot, default: %u if FW < 0.967, 0 otherwise)\n", DEFAULT_REBOOT_SECONDS);
fprintf(stderr, "\t hh:mm\treboot HM-CFG-USB daily at hh:mm\n");
+ fprintf(stderr, "\t-S serial\tuse HM-CFG-USB with given serial (for multiple hmland instances)\n");
fprintf(stderr, "\t-v\t\tverbose mode\n");
fprintf(stderr, "\t-V\t\tshow version (" VERSION ")\n");
char *ep;
int opt;
- while((opt = getopt(argc, argv, "DdhIiPp:Rr:l:L:vV")) != -1) {
+ while((opt = getopt(argc, argv, "DdhIiPp:Rr:l:L:S:vV")) != -1) {
switch (opt) {
case 'D':
debug = 1;
exit(EXIT_FAILURE);
}
break;
+ case 'S':
+ serial = optarg;
+ break;
case 'v':
verbose = 1;
break;