uint32_t hmid = 0;
uint32_t my_hmid = 0;
char key[16] = {0};
-uint32_t kNo = 0;
+int32_t kNo = -1;
/* Maximum payloadlen supported by IO */
uint32_t max_payloadlen = NORMAL_MAX_PAYLOAD;
}
}
if (rdata->message_type == MESSAGE_TYPE_E) {
- break;
+ if (rdata->message[TYPE] == 0x02) {
+ if (rdata->message[PAYLOAD] == 0x01) {
+ printf("AES request received but not implemented for culfw!\n");
+ } else if (rdata->message[PAYLOAD] >= 0x80 && rdata->message[PAYLOAD] <= 0x8f) {
+ printf("NACK\n");
+ } else { /* ACK or ACKinfo */
+ break;
+ }
+ } else {
+ printf("Unexpected message received: ");
+ for (i = 0; i < rdata->message[LEN]; i++) {
+ printf("%02x", rdata->message[i+1]);
+ }
+ printf("\n");
+ }
}
} while(cnt--);
fprintf(stderr, "Syntax: %s parameters options\n\n", prog);
fprintf(stderr, "Mandatory parameters:\n");
fprintf(stderr, "\t-f firmware.eq3\tfirmware file to flash\n");
- fprintf(stderr, "\t-s SERIAL\tserial of device to flash\n");
+ fprintf(stderr, "\t-s SERIAL\tserial of device to flash (optional when using -D)\n");
fprintf(stderr, "\nOptional parameters:\n");
fprintf(stderr, "\t-c device\tenable CUL-mode with CUL at path \"device\"\n");
fprintf(stderr, "\t-b bps\t\tuse CUL with speed \"bps\" (default: %u)\n", DEFAULT_CUL_BPS);
}
}
- if (!fw_file || !serial) {
+ if (!fw_file || (!serial && !hmid)) {
flash_ota_syntax(argv[0]);
exit(EXIT_FAILURE);
}
memset(&dev, 0, sizeof(struct ota_dev));
if (culfw_dev) {
- if (kNo) {
+ if (kNo != -1) {
fprintf(stderr, "\nAES currently not supported with culfw-device!\n");
flash_ota_syntax(argv[0]);
exit(EXIT_FAILURE);
my_hmid = new_hmid;
}
- if (kNo) {
+ if (kNo > 0) {
printf("Setting AES-key\n");
memset(out, 0, sizeof(out));
}
}
- printf("Waiting for device with serial %s\n", serial);
+ if (serial) {
+ printf("Waiting for device with serial %s\n", serial);
+ } else {
+ printf("Waiting for device with HMID %06x\n", hmid);
+ }
while (1) {
errno = 0;
(rdata.message[TYPE] == 0x10) && /* Messagte type: Information */
(DST(rdata.message) == 0x000000) && /* Broadcast */
(rdata.message[PAYLOAD] == 0x00)) { /* FUP? */
- if (!strncmp((char*)&(rdata.message[0x0b]), serial, 10)) {
+ if (serial && !strncmp((char*)&(rdata.message[0x0b]), serial, 10)) {
hmid = SRC(rdata.message);
break;
+ } else if (!serial && SRC(rdata.message) == hmid) {
+ serial = (char*)&(rdata.message[0x0b]);
+ break;
}
}
}
- printf("Device with serial %s (hmid: %06x) entered firmware-update-mode\n", serial, hmid);
+ printf("Device with serial %s (HMID: %06x) entered firmware-update-mode\n", serial, hmid);
if (dev.type == DEVICE_TYPE_HMCFGUSB) {
printf("Adding HMID\n");