1 /* flasher for HomeMatic-devices supporting OTA updates
3 * Copyright (c) 2014-15 Michael Gernoth <michael@gernoth.net>
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to
7 * deal in the Software without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32 #include <sys/types.h>
36 #include <libusb-1.0/libusb.h>
47 #define NORMAL_MAX_PAYLOAD 37
48 #define LOWER_MAX_PAYLOAD 17
54 uint8_t key
[16] = {0};
57 /* Maximum payloadlen supported by IO */
58 uint32_t max_payloadlen
= NORMAL_MAX_PAYLOAD
;
67 struct hmcfgusb_dev
*hmcfgusb
;
68 struct culfw_dev
*culfw
;
78 enum message_type message_type
;
85 static int parse_hmcfgusb(uint8_t *buf
, int buf_len
, void *data
)
87 struct recv_data
*rdata
= data
;
95 ((buf
[0x11] == ((hmid
>> 16) & 0xff)) &&
96 (buf
[0x12] == ((hmid
>> 8) & 0xff)) &&
97 (buf
[0x13] == (hmid
& 0xff)))) {
98 memset(rdata
->message
, 0, sizeof(rdata
->message
));
99 memcpy(rdata
->message
, buf
+ 0x0d, buf
[0x0d] + 1);
100 rdata
->message_type
= MESSAGE_TYPE_E
;
104 memset(rdata
->message
, 0, sizeof(rdata
->message
));
105 memcpy(rdata
->message
, buf
+ 0x0e, buf
[0x0e] + 1);
106 rdata
->status
= (buf
[5] << 8) | buf
[6];
107 rdata
->message_type
= MESSAGE_TYPE_R
;
110 rdata
->speed
= buf
[1];
113 rdata
->version
= (buf
[11] << 8) | buf
[12];
114 rdata
->credits
= buf
[36];
115 my_hmid
= (buf
[0x1b] << 16) | (buf
[0x1c] << 8) | buf
[0x1d];
127 static int parse_culfw(uint8_t *buf
, int buf_len
, void *data
)
129 struct recv_data
*rdata
= data
;
132 memset(rdata
, 0, sizeof(struct recv_data
));
142 while(validate_nibble(buf
[(pos
* 2) + 1]) &&
143 validate_nibble(buf
[(pos
* 2) + 2]) &&
144 (pos
+ 1 < buf_len
)) {
145 rdata
->message
[pos
] = ascii_to_nibble(buf
[(pos
* 2) + 1]) << 4;
146 rdata
->message
[pos
] |= ascii_to_nibble(buf
[(pos
* 2) + 2]);
150 if (hmid
&& (SRC(rdata
->message
) != hmid
))
153 rdata
->message_type
= MESSAGE_TYPE_E
;
161 s
= ((char*)buf
) + 2;
164 fprintf(stderr
, "Unknown response from CUL: %s", buf
);
169 rdata
->version
= v
<< 8;
174 fprintf(stderr
, "Unknown response from CUL: %s", buf
);
187 if (!strcmp(s
, "a-culfw")) {
188 rdata
->version
= 0xffff;
194 if (!strncmp((char*)buf
, "ERR:CCA", 7)) {
195 fprintf(stderr
, "CCA didn't complete, too much traffic\n");
200 fprintf(stderr
, "Unknown response from CUL: %s", buf
);
208 int send_hm_message(struct ota_dev
*dev
, struct recv_data
*rdata
, uint8_t *msg
)
210 static uint32_t id
= 1;
216 case DEVICE_TYPE_HMCFGUSB
:
217 if (gettimeofday(&tv
, NULL
) == -1) {
218 perror("gettimeofay");
222 memset(out
, 0, sizeof(out
));
225 out
[1] = (id
>> 24) & 0xff;
226 out
[2] = (id
>> 16) & 0xff;
227 out
[3] = (id
>> 8) & 0xff;
230 out
[11] = (tv
.tv_usec
>> 24) & 0xff;
231 out
[12] = (tv
.tv_usec
>> 16) & 0xff;
232 out
[13] = (tv
.tv_usec
>> 8) & 0xff;
233 out
[14] = tv
.tv_usec
& 0xff;
235 memcpy(&out
[0x0f], msg
, msg
[0] + 1);
237 memset(rdata
, 0, sizeof(struct recv_data
));
238 hmcfgusb_send(dev
->hmcfgusb
, out
, sizeof(out
), 1);
241 if (rdata
->message_type
== MESSAGE_TYPE_R
) {
242 if (((rdata
->status
& 0xdf) == 0x01) ||
243 ((rdata
->status
& 0xdf) == 0x02)) {
246 if ((rdata
->status
& 0xff00) == 0x0400) {
247 fprintf(stderr
, "\nOut of credits!\n");
248 } else if ((rdata
->status
& 0xff) == 0x08) {
249 fprintf(stderr
, "\nMissing ACK!\n");
250 } else if ((rdata
->status
& 0xff) == 0x30) {
251 fprintf(stderr
, "\nUnknown AES-key requested!\n");
253 fprintf(stderr
, "\nInvalid status: %04x\n", rdata
->status
);
259 pfd
= hmcfgusb_poll(dev
->hmcfgusb
, 1000);
260 if ((pfd
< 0) && errno
) {
261 if (errno
!= ETIMEDOUT
) {
262 perror("\n\nhmcfgusb_poll");
268 case DEVICE_TYPE_CULFW
:
273 memset(buf
, 0, sizeof(buf
));
276 for (i
= 0; i
< msg
[0] + 1; i
++) {
277 buf
[2 + (i
* 2)] = nibble_to_ascii((msg
[i
] >> 4) & 0xf);
278 buf
[2 + (i
* 2) + 1] = nibble_to_ascii(msg
[i
] & 0xf);
280 buf
[2 + (i
* 2) ] = '\r';
281 buf
[2 + (i
* 2) + 1] = '\n';
283 memset(rdata
, 0, sizeof(struct recv_data
));
284 if (culfw_send(dev
->culfw
, buf
, 2 + (i
* 2) + 1) == 0) {
285 fprintf(stderr
, "culfw_send failed!\n");
289 if (msg
[CTL
] & 0x20) {
294 pfd
= culfw_poll(dev
->culfw
, 200);
295 if ((pfd
< 0) && errno
) {
296 if (errno
!= ETIMEDOUT
) {
297 perror("\n\nculfw_poll");
301 if (rdata
->message_type
== MESSAGE_TYPE_E
) {
302 if (rdata
->message
[TYPE
] == 0x02) {
303 if (rdata
->message
[PAYLOAD
] == 0x04) {
305 uint8_t challenge
[6];
309 req_kNo
= rdata
->message
[rdata
->message
[LEN
]] / 2;
310 memcpy(challenge
, &(rdata
->message
[PAYLOAD
+1]), 6);
312 if (req_kNo
!= kNo
) {
313 fprintf(stderr
, "AES request for unknown key %d!\n", req_kNo
);
315 resp
= hm_sign(key
, challenge
, msg
, NULL
, respbuf
);
319 memset(rbuf
, 0, sizeof(rbuf
));
320 rbuf
[MSGID
] = rdata
->message
[MSGID
];
321 rbuf
[CTL
] = rdata
->message
[CTL
];
323 SET_SRC(rbuf
, DST(rdata
->message
));
324 SET_DST(rbuf
, SRC(rdata
->message
));
325 memcpy(&(rbuf
[PAYLOAD
]), resp
, 16);
326 SET_LEN_FROM_PAYLOADLEN(rbuf
, 16);
328 return send_hm_message(dev
, rdata
, rbuf
);
331 } else if (rdata
->message
[PAYLOAD
] >= 0x80 && rdata
->message
[PAYLOAD
] <= 0x8f) {
332 fprintf(stderr
, "NACK\n");
333 } else { /* ACK or ACKinfo */
337 fprintf(stderr
, "Unexpected message received: ");
338 for (i
= 0; i
< rdata
->message
[LEN
]; i
++) {
339 fprintf(stderr
, "%02x", rdata
->message
[i
+1]);
341 fprintf(stderr
, "\n");
347 fprintf(stderr
, "\nMissing ACK!\n");
359 static int switch_speed(struct ota_dev
*dev
, struct recv_data
*rdata
, uint8_t speed
)
364 printf("Entering %uk-mode\n", speed
);
367 case DEVICE_TYPE_HMCFGUSB
:
368 memset(out
, 0, sizeof(out
));
372 hmcfgusb_send(dev
->hmcfgusb
, out
, sizeof(out
), 1);
376 pfd
= hmcfgusb_poll(dev
->hmcfgusb
, 1000);
377 if ((pfd
< 0) && errno
) {
378 if (errno
!= ETIMEDOUT
) {
379 perror("\n\nhmcfgusb_poll");
383 if (rdata
->speed
== speed
)
387 case DEVICE_TYPE_CULFW
:
389 return culfw_send(dev
->culfw
, "AR\r\n", 4);
391 return culfw_send(dev
->culfw
, "Ar\r\n", 4);
399 void flash_ota_syntax(char *prog
)
401 fprintf(stderr
, "Syntax: %s parameters options\n\n", prog
);
402 fprintf(stderr
, "Mandatory parameters:\n");
403 fprintf(stderr
, "\t-f firmware.eq3\tfirmware file to flash\n");
404 fprintf(stderr
, "\t-s SERIAL\tserial of device to flash (optional when using -D)\n");
405 fprintf(stderr
, "\nOptional parameters:\n");
406 fprintf(stderr
, "\t-c device\tenable CUL-mode with CUL at path \"device\"\n");
407 fprintf(stderr
, "\t-b bps\t\tuse CUL with speed \"bps\" (default: %u)\n", DEFAULT_CUL_BPS
);
408 fprintf(stderr
, "\t-l\t\tlower payloadlen (required for devices with little RAM, e.g. CUL v2 and CUL v4)\n");
409 fprintf(stderr
, "\t-S serial\tuse HM-CFG-USB with given serial\n");
410 fprintf(stderr
, "\t-h\t\tthis help\n");
411 fprintf(stderr
, "\nOptional parameters for automatically sending device to bootloader\n");
412 fprintf(stderr
, "\t-C\t\tHMID of central (3 hex-bytes, no prefix, e.g. ABCDEF)\n");
413 fprintf(stderr
, "\t-D\t\tHMID of device (3 hex-bytes, no prefix, e.g. 123456)\n");
414 fprintf(stderr
, "\t-K\t\tKNO:KEY AES key-number and key (hex) separated by colon (Fhem hmKey attribute)\n");
417 int main(int argc
, char **argv
)
419 const char twiddlie
[] = { '-', '\\', '|', '/' };
420 const uint8_t cc1101_regs
[] = { 0x10, 0x5B, 0x11, 0xF8, 0x15, 0x47 };
421 char *fw_file
= NULL
;
423 char *culfw_dev
= NULL
;
425 unsigned int bps
= DEFAULT_CUL_BPS
;
427 struct recv_data rdata
;
433 char *hmcfgusb_serial
= NULL
;
443 printf("HomeMatic OTA flasher version " VERSION
"\n\n");
445 while((opt
= getopt(argc
, argv
, "b:c:f:hls:C:D:K:S:")) != -1) {
457 printf("Reducing payload-len from %d to %d\n", max_payloadlen
, LOWER_MAX_PAYLOAD
);
458 max_payloadlen
= LOWER_MAX_PAYLOAD
;
464 my_hmid
= strtoul(optarg
, &endptr
, 16);
465 if (*endptr
!= '\0') {
466 fprintf(stderr
, "Invalid central HMID!\n\n");
467 flash_ota_syntax(argv
[0]);
472 hmid
= strtoul(optarg
, &endptr
, 16);
473 if (*endptr
!= '\0') {
474 fprintf(stderr
, "Invalid device HMID!\n\n");
475 flash_ota_syntax(argv
[0]);
480 kNo
= strtoul(optarg
, &endptr
, 10);
481 if (*endptr
!= ':') {
482 fprintf(stderr
, "Invalid key number!\n\n");
483 flash_ota_syntax(argv
[0]);
487 for (cnt
= 0; cnt
< 16; cnt
++) {
488 if (*endptr
== '\0' || *(endptr
+1) == '\0' ||
489 !validate_nibble(*endptr
) ||
490 !validate_nibble(*(endptr
+1))) {
491 fprintf(stderr
, "Invalid key!\n\n");
492 flash_ota_syntax(argv
[0]);
495 key
[cnt
] = ascii_to_nibble(*endptr
) << 4 | ascii_to_nibble(*(endptr
+1));
500 hmcfgusb_serial
= optarg
;
506 flash_ota_syntax(argv
[0]);
513 if (!fw_file
|| (!serial
&& !hmid
)) {
514 flash_ota_syntax(argv
[0]);
518 fw
= firmware_read_firmware(fw_file
, debug
);
522 memset(&rdata
, 0, sizeof(rdata
));
523 memset(&dev
, 0, sizeof(struct ota_dev
));
526 printf("Opening culfw-device at path %s with speed %u\n", culfw_dev
, bps
);
527 dev
.culfw
= culfw_init(culfw_dev
, bps
, parse_culfw
, &rdata
);
529 fprintf(stderr
, "Can't initialize CUL at %s with rate %u\n", culfw_dev
, bps
);
532 dev
.type
= DEVICE_TYPE_CULFW
;
534 printf("Requesting firmware version\n");
535 culfw_send(dev
.culfw
, "\r\n", 2);
536 culfw_flush(dev
.culfw
);
539 culfw_send(dev
.culfw
, "V\r\n", 3);
542 pfd
= culfw_poll(dev
.culfw
, 1000);
543 if ((pfd
< 0) && errno
) {
544 if (errno
!= ETIMEDOUT
) {
545 perror("\n\nhmcfgusb_poll");
553 printf("culfw-device firmware version: ");
554 if (rdata
.version
!= 0xffff) {
556 (rdata
.version
>> 8) & 0xff,
557 rdata
.version
& 0xff);
562 if (rdata
.version
< 0x013a) {
563 fprintf(stderr
, "\nThis version does _not_ support firmware upgrade mode, you need at least 1.58!\n");
567 uint32_t new_hmid
= my_hmid
;
569 hmcfgusb_set_debug(debug
);
571 dev
.hmcfgusb
= hmcfgusb_init(parse_hmcfgusb
, &rdata
, hmcfgusb_serial
);
573 fprintf(stderr
, "Can't initialize HM-CFG-USB\n");
576 dev
.type
= DEVICE_TYPE_HMCFGUSB
;
578 memset(out
, 0, sizeof(out
));
580 hmcfgusb_send(dev
.hmcfgusb
, out
, sizeof(out
), 1);
584 pfd
= hmcfgusb_poll(dev
.hmcfgusb
, 1000);
585 if ((pfd
< 0) && errno
) {
586 if (errno
!= ETIMEDOUT
) {
587 perror("\n\nhmcfgusb_poll");
595 if (rdata
.version
< 0x3c7) {
596 fprintf(stderr
, "HM-CFG-USB firmware too low: %u < 967\n", rdata
.version
);
600 printf("HM-CFG-USB firmware version: %u, used credits: %u%%\n", rdata
.version
, rdata
.credits
);
602 if (rdata
.credits
>= 40) {
603 printf("\nRebooting HM-CFG-USB to avoid running out of credits\n\n");
605 if (!dev
.hmcfgusb
->bootloader
) {
606 printf("HM-CFG-USB not in bootloader mode, entering bootloader.\n");
607 printf("Waiting for device to reappear...\n");
611 if (!dev
.hmcfgusb
->bootloader
)
612 hmcfgusb_enter_bootloader(dev
.hmcfgusb
);
613 hmcfgusb_close(dev
.hmcfgusb
);
616 } while (((dev
.hmcfgusb
= hmcfgusb_init(parse_hmcfgusb
, &rdata
, hmcfgusb_serial
)) == NULL
) || (!dev
.hmcfgusb
->bootloader
));
619 if (dev
.hmcfgusb
->bootloader
) {
620 printf("HM-CFG-USB in bootloader mode, rebooting\n");
624 if (dev
.hmcfgusb
->bootloader
)
625 hmcfgusb_leave_bootloader(dev
.hmcfgusb
);
626 hmcfgusb_close(dev
.hmcfgusb
);
629 } while (((dev
.hmcfgusb
= hmcfgusb_init(parse_hmcfgusb
, &rdata
, hmcfgusb_serial
)) == NULL
) || (dev
.hmcfgusb
->bootloader
));
633 printf("\n\nHM-CFG-USB opened\n\n");
635 if (new_hmid
&& (my_hmid
!= new_hmid
)) {
636 printf("Changing hmid from %06x to %06x\n", my_hmid
, new_hmid
);
638 memset(out
, 0, sizeof(out
));
640 out
[1] = (new_hmid
>> 16) & 0xff;
641 out
[2] = (new_hmid
>> 8) & 0xff;
642 out
[3] = new_hmid
& 0xff;
644 hmcfgusb_send(dev
.hmcfgusb
, out
, sizeof(out
), 1);
650 printf("Setting AES-key\n");
652 memset(out
, 0, sizeof(out
));
656 out
[3] = sizeof(key
);
657 memcpy(&(out
[4]), key
, sizeof(key
));
658 hmcfgusb_send(dev
.hmcfgusb
, out
, sizeof(out
), 1);
660 memset(out
, 0, sizeof(out
));
665 hmcfgusb_send(dev
.hmcfgusb
, out
, sizeof(out
), 1);
667 memset(out
, 0, sizeof(out
));
672 hmcfgusb_send(dev
.hmcfgusb
, out
, sizeof(out
), 1);
676 if (!switch_speed(&dev
, &rdata
, 10)) {
677 fprintf(stderr
, "Can't switch speed!\n");
681 if (hmid
&& my_hmid
) {
682 printf("Sending device with hmid %06x to bootloader\n", hmid
);
685 SET_SRC(out
, my_hmid
);
688 SET_LEN_FROM_PAYLOADLEN(out
, 1);
692 out
[MSGID
] = msgid
++;
693 if (send_hm_message(&dev
, &rdata
, out
)) {
698 printf("Failed to send device to bootloader, please enter bootloader manually.\n");
703 printf("Waiting for device with serial %s\n", serial
);
705 printf("Waiting for device with HMID %06x\n", hmid
);
711 case DEVICE_TYPE_CULFW
:
712 pfd
= culfw_poll(dev
.culfw
, 1000);
714 case DEVICE_TYPE_HMCFGUSB
:
716 pfd
= hmcfgusb_poll(dev
.hmcfgusb
, 1000);
720 if ((pfd
< 0) && errno
) {
721 if (errno
!= ETIMEDOUT
) {
727 if ((rdata
.message
[LEN
] == 0x14) && /* Length */
728 (rdata
.message
[MSGID
] == 0x00) && /* Message ID */
729 (rdata
.message
[CTL
] == 0x00) && /* Control Byte */
730 (rdata
.message
[TYPE
] == 0x10) && /* Messagte type: Information */
731 (DST(rdata
.message
) == 0x000000) && /* Broadcast */
732 (rdata
.message
[PAYLOAD
] == 0x00)) { /* FUP? */
733 if (serial
&& !strncmp((char*)&(rdata
.message
[0x0b]), serial
, 10)) {
734 hmid
= SRC(rdata
.message
);
736 } else if (!serial
&& SRC(rdata
.message
) == hmid
) {
737 serial
= (char*)&(rdata
.message
[0x0b]);
743 printf("Device with serial %s (HMID: %06x) entered firmware-update-mode\n", serial
, hmid
);
745 if (dev
.type
== DEVICE_TYPE_HMCFGUSB
) {
746 printf("Adding HMID\n");
748 memset(out
, 0, sizeof(out
));
750 out
[1] = (hmid
>> 16) & 0xff;
751 out
[2] = (hmid
>> 8) & 0xff;
752 out
[3] = hmid
& 0xff;
754 hmcfgusb_send(dev
.hmcfgusb
, out
, sizeof(out
), 1);
759 printf("Initiating remote switch to 100k\n");
761 memset(out
, 0, sizeof(out
));
763 out
[MSGID
] = msgid
++;
766 SET_SRC(out
, my_hmid
);
769 memcpy(&out
[PAYLOAD
], cc1101_regs
, sizeof(cc1101_regs
));
770 SET_LEN_FROM_PAYLOADLEN(out
, sizeof(cc1101_regs
));
772 if (!send_hm_message(&dev
, &rdata
, out
)) {
776 if (!switch_speed(&dev
, &rdata
, 100)) {
777 fprintf(stderr
, "Can't switch speed!\n");
781 printf("Has the device switched?\n");
783 memset(out
, 0, sizeof(out
));
785 out
[MSGID
] = msgid
++;
788 SET_SRC(out
, my_hmid
);
791 memcpy(&out
[PAYLOAD
], cc1101_regs
, sizeof(cc1101_regs
));
792 SET_LEN_FROM_PAYLOADLEN(out
, sizeof(cc1101_regs
));
796 if (send_hm_message(&dev
, &rdata
, out
)) {
797 /* A0A02000221B9AD00000000 */
806 if (!switch_speed(&dev
, &rdata
, 10)) {
807 fprintf(stderr
, "Can't switch speed!\n");
811 } while ((!switched
) && (switchcnt
--));
814 fprintf(stderr
, "Too many errors, giving up!\n");
820 printf("Flashing %d blocks", fw
->fw_blocks
);
824 printf(": %04u/%04u %c", 0, fw
->fw_blocks
, twiddlie
[0]);
828 for (block
= 0; block
< fw
->fw_blocks
; block
++) {
831 len
= fw
->fw
[block
][2] << 8;
832 len
|= fw
->fw
[block
][3];
834 pos
= &(fw
->fw
[block
][2]);
836 len
+= 2; /* length */
839 hexdump(pos
, len
, "F> ");
844 int payloadlen
= max_payloadlen
- 2;
848 payloadlen
= max_payloadlen
;
852 if ((len
- (pos
- &(fw
->fw
[block
][2]))) < payloadlen
)
853 payloadlen
= (len
- (pos
- &(fw
->fw
[block
][2])));
855 if (((pos
+ payloadlen
) - &(fw
->fw
[block
][2])) == len
)
858 memset(&rdata
, 0, sizeof(rdata
));
860 memset(out
, 0, sizeof(out
));
866 SET_SRC(out
, my_hmid
);
869 memcpy(&out
[PAYLOAD
], pos
, payloadlen
);
870 SET_LEN_FROM_PAYLOADLEN(out
, payloadlen
);
872 if (send_hm_message(&dev
, &rdata
, out
)) {
875 pos
= &(fw
->fw
[block
][2]);
877 if (cnt
== MAX_RETRIES
) {
878 fprintf(stderr
, "\nToo many errors, giving up!\n");
881 printf("Flashing %d blocks: %04u/%04u %c", fw
->fw_blocks
, block
+ 1, fw
->fw_blocks
, twiddlie
[msgnum
% sizeof(twiddlie
)]);
888 printf("\b\b\b\b\b\b\b\b\b\b\b%04u/%04u %c",
889 block
+ 1, fw
->fw_blocks
, twiddlie
[msgnum
% sizeof(twiddlie
)]);
892 } while((pos
- &(fw
->fw
[block
][2])) < len
);
900 if (!switch_speed(&dev
, &rdata
, 10)) {
901 fprintf(stderr
, "Can't switch speed!\n");
905 printf("Waiting for device to reboot\n");
911 case DEVICE_TYPE_CULFW
:
912 pfd
= culfw_poll(dev
.culfw
, 1000);
914 case DEVICE_TYPE_HMCFGUSB
:
916 pfd
= hmcfgusb_poll(dev
.hmcfgusb
, 1000);
919 if ((pfd
< 0) && errno
) {
920 if (errno
!= ETIMEDOUT
) {
925 if (rdata
.message_type
== MESSAGE_TYPE_E
) {
930 if (rdata
.message_type
== MESSAGE_TYPE_E
) {
931 printf("Device rebooted\n");
935 case DEVICE_TYPE_HMCFGUSB
:
936 hmcfgusb_close(dev
.hmcfgusb
);
939 case DEVICE_TYPE_CULFW
:
940 culfw_close(dev
.culfw
);