3 Copyright (C) Dean Camera, 2017.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaims all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
33 * Main source file for the DFU class bootloader. This file contains the complete bootloader logic.
36 #define INCLUDE_FROM_BOOTLOADER_C
37 #include "BootloaderDFU.h"
39 /** Flag to indicate if the bootloader is currently running in secure mode, disallowing memory operations
40 * other than erase. This is initially set to the value set by SECURE_MODE, and cleared by the bootloader
41 * once a memory erase has completed in a bootloader session.
43 static bool IsSecure
= SECURE_MODE
;
45 /** Flag to indicate if the bootloader should be running, or should exit and allow the application code to run
46 * via a soft reset. When cleared, the bootloader will abort, the USB interface will shut down and the application
47 * jumped to via an indirect jump to location 0x0000 (or other location specified by the host).
49 static bool RunBootloader
= true;
51 /** Flag to indicate if the bootloader is waiting to exit. When the host requests the bootloader to exit and
52 * jump to the application address it specifies, it sends two sequential commands which must be properly
53 * acknowledged. Upon reception of the first the RunBootloader flag is cleared and the WaitForExit flag is set,
54 * causing the bootloader to wait for the final exit command before shutting down.
56 static bool WaitForExit
= false;
58 /** Current DFU state machine state, one of the values in the DFU_State_t enum. */
59 static uint8_t DFU_State
= dfuIDLE
;
61 /** Status code of the last executed DFU command. This is set to one of the values in the DFU_Status_t enum after
62 * each operation, and returned to the host when a Get Status DFU request is issued.
64 static uint8_t DFU_Status
= OK
;
66 /** Data containing the DFU command sent from the host. */
67 static DFU_Command_t SentCommand
;
69 /** Response to the last issued Read Data DFU command. Unlike other DFU commands, the read command
70 * requires a single byte response from the bootloader containing the read data when the next DFU_UPLOAD command
71 * is issued by the host.
73 static uint8_t ResponseByte
;
75 /** Pointer to the start of the user application. By default this is 0x0000 (the reset vector), however the host
76 * may specify an alternate address when issuing the application soft-start command.
78 static AppPtr_t AppStartPtr
= (AppPtr_t
)0x0000;
80 /** 64-bit flash page number. This is concatenated with the current 16-bit address on USB AVRs containing more than
81 * 64KB of flash memory.
83 static uint8_t Flash64KBPage
= 0;
85 /** Memory start address, indicating the current address in the memory being addressed (either FLASH or EEPROM
86 * depending on the issued command from the host).
88 static uint16_t StartAddr
= 0x0000;
90 /** Memory end address, indicating the end address to read from/write to in the memory being addressed (either FLASH
91 * of EEPROM depending on the issued command from the host).
93 static uint16_t EndAddr
= 0x0000;
95 /** Magic lock for forced application start. If the HWBE fuse is programmed and BOOTRST is unprogrammed, the bootloader
96 * will start if the /HWB line of the AVR is held low and the system is reset. However, if the /HWB line is still held
97 * low when the application attempts to start via a watchdog reset, the bootloader will re-start. If set to the value
98 * \ref MAGIC_BOOT_KEY the special init function \ref Application_Jump_Check() will force the application to start.
100 uint16_t MagicBootKey ATTR_NO_INIT
;
103 /** Special startup routine to check if the bootloader was started via a watchdog reset, and if the magic application
104 * start key has been loaded into \ref MagicBootKey. If the bootloader started via the watchdog and the key is valid,
105 * this will force the user application to start via a software jump.
107 void Application_Jump_Check(void)
109 bool JumpToApplication
= false;
111 #if (BOARD == BOARD_LEONARDO)
112 /* Enable pull-up on the IO13 pin so we can use it to select the mode */
116 /* If IO13 is not jumpered to ground, start the user application instead */
117 JumpToApplication
= ((PINC
& (1 << 7)) != 0);
119 /* Disable pull-up after the check has completed */
121 #elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
122 /* Disable JTAG debugging */
125 /* Enable pull-up on the JTAG TCK pin so we can use it to select the mode */
129 /* If the TCK pin is not jumpered to ground, start the user application instead */
130 JumpToApplication
= ((PINF
& (1 << 4)) != 0);
132 /* Re-enable JTAG debugging */
135 /* Check if the device's BOOTRST fuse is set */
136 if (BootloaderAPI_ReadFuse(GET_HIGH_FUSE_BITS
) & FUSE_BOOTRST
)
138 /* If the reset source was not an external reset or the key is correct, clear it and jump to the application */
139 if (!(MCUSR
& (1 << EXTRF
)) || (MagicBootKey
== MAGIC_BOOT_KEY
))
140 JumpToApplication
= true;
142 /* Clear reset source */
143 MCUSR
&= ~(1 << EXTRF
);
147 /* If the reset source was the bootloader and the key is correct, clear it and jump to the application;
148 * this can happen in the HWBE fuse is set, and the HBE pin is low during the watchdog reset */
149 if ((MCUSR
& (1 << WDRF
)) && (MagicBootKey
== MAGIC_BOOT_KEY
))
150 JumpToApplication
= true;
152 /* Clear reset source */
153 MCUSR
&= ~(1 << WDRF
);
157 /* Don't run the user application if the reset vector is blank (no app loaded) */
158 bool ApplicationValid
= (pgm_read_word_near(0) != 0xFFFF);
160 /* If a request has been made to jump to the user application, honor it */
161 if (JumpToApplication
&& ApplicationValid
)
163 /* Turn off the watchdog */
164 MCUSR
&= ~(1 << WDRF
);
167 /* Clear the boot key and jump to the user application */
170 // cppcheck-suppress constStatement
171 ((void (*)(void))0x0000)();
175 /** Main program entry point. This routine configures the hardware required by the bootloader, then continuously
176 * runs the bootloader processing routine until instructed to soft-exit, or hard-reset via the watchdog to start
177 * the loaded application code.
181 /* Configure hardware required by the bootloader */
184 /* Turn on first LED on the board to indicate that the bootloader has started */
185 LEDs_SetAllLEDs(LEDS_LED1
);
187 /* Enable global interrupts so that the USB stack can function */
188 GlobalInterruptEnable();
190 /* Run the USB management task while the bootloader is supposed to be running */
191 while (RunBootloader
|| WaitForExit
)
194 /* Reset configured hardware back to their original states for the user application */
197 /* Start the user application */
201 /** Configures all hardware required for the bootloader. */
202 static void SetupHardware(void)
204 /* Disable watchdog if enabled by bootloader/fuses */
205 MCUSR
&= ~(1 << WDRF
);
208 /* Disable clock division */
209 clock_prescale_set(clock_div_1
);
211 /* Relocate the interrupt vector table to the bootloader section */
213 MCUCR
= (1 << IVSEL
);
215 /* Initialize the USB and other board hardware drivers */
219 /* Bootloader active LED toggle timer initialization */
220 TIMSK1
= (1 << TOIE1
);
221 TCCR1B
= ((1 << CS11
) | (1 << CS10
));
224 /** Resets all configured hardware required for the bootloader back to their original states. */
225 static void ResetHardware(void)
227 /* Shut down the USB and other board hardware drivers */
231 /* Disable Bootloader active LED toggle timer */
235 /* Relocate the interrupt vector table back to the application section */
240 /** ISR to periodically toggle the LEDs on the board to indicate that the bootloader is active. */
241 ISR(TIMER1_OVF_vect
, ISR_BLOCK
)
243 LEDs_ToggleLEDs(LEDS_LED1
| LEDS_LED2
);
246 /** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to
247 * the device from the USB host before passing along unhandled control requests to the library for processing
250 void EVENT_USB_Device_ControlRequest(void)
252 /* Ignore any requests that aren't directed to the DFU interface */
253 if ((USB_ControlRequest
.bmRequestType
& (CONTROL_REQTYPE_TYPE
| CONTROL_REQTYPE_RECIPIENT
)) !=
254 (REQTYPE_CLASS
| REQREC_INTERFACE
))
259 /* Activity - toggle indicator LEDs */
260 LEDs_ToggleLEDs(LEDS_LED1
| LEDS_LED2
);
262 /* Get the size of the command and data from the wLength value */
263 SentCommand
.DataSize
= USB_ControlRequest
.wLength
;
265 switch (USB_ControlRequest
.bRequest
)
268 Endpoint_ClearSETUP();
270 /* Check if bootloader is waiting to terminate */
273 /* Bootloader is terminating - process last received command */
274 ProcessBootloaderCommand();
276 /* Indicate that the last command has now been processed - free to exit bootloader */
280 /* If the request has a data stage, load it into the command struct */
281 if (SentCommand
.DataSize
)
283 while (!(Endpoint_IsOUTReceived()))
285 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
289 /* First byte of the data stage is the DNLOAD request's command */
290 SentCommand
.Command
= Endpoint_Read_8();
292 /* One byte of the data stage is the command, so subtract it from the total data bytes */
293 SentCommand
.DataSize
--;
295 /* Load in the rest of the data stage as command parameters */
296 for (uint8_t DataByte
= 0; (DataByte
< sizeof(SentCommand
.Data
)) &&
297 Endpoint_BytesInEndpoint(); DataByte
++)
299 SentCommand
.Data
[DataByte
] = Endpoint_Read_8();
300 SentCommand
.DataSize
--;
303 /* Process the command */
304 ProcessBootloaderCommand();
307 /* Check if currently downloading firmware */
308 if (DFU_State
== dfuDNLOAD_IDLE
)
310 if (!(SentCommand
.DataSize
))
316 /* Throw away the filler bytes before the start of the firmware */
317 DiscardFillerBytes(DFU_FILLER_BYTES_SIZE
);
319 /* Throw away the packet alignment filler bytes before the start of the firmware */
320 DiscardFillerBytes(StartAddr
% FIXED_CONTROL_ENDPOINT_SIZE
);
322 /* Calculate the number of bytes remaining to be written */
323 uint16_t BytesRemaining
= ((EndAddr
- StartAddr
) + 1);
325 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x00)) // Write flash
327 /* Calculate the number of words to be written from the number of bytes to be written */
328 uint16_t WordsRemaining
= (BytesRemaining
>> 1);
334 } CurrFlashAddress
= {.Words
= {StartAddr
, Flash64KBPage
}};
336 uint32_t CurrFlashPageStartAddress
= CurrFlashAddress
.Long
;
337 uint8_t WordsInFlashPage
= 0;
339 while (WordsRemaining
--)
341 /* Check if endpoint is empty - if so clear it and wait until ready for next packet */
342 if (!(Endpoint_BytesInEndpoint()))
346 while (!(Endpoint_IsOUTReceived()))
348 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
353 /* Write the next word into the current flash page */
354 BootloaderAPI_FillWord(CurrFlashAddress
.Long
, Endpoint_Read_16_LE());
356 /* Adjust counters */
357 WordsInFlashPage
+= 1;
358 CurrFlashAddress
.Long
+= 2;
360 /* See if an entire page has been written to the flash page buffer */
361 if ((WordsInFlashPage
== (SPM_PAGESIZE
>> 1)) || !(WordsRemaining
))
363 /* Commit the flash page to memory */
364 BootloaderAPI_WritePage(CurrFlashPageStartAddress
);
366 /* Check if programming incomplete */
369 CurrFlashPageStartAddress
= CurrFlashAddress
.Long
;
370 WordsInFlashPage
= 0;
372 /* Erase next page's temp buffer */
373 BootloaderAPI_ErasePage(CurrFlashAddress
.Long
);
378 /* Once programming complete, start address equals the end address */
383 while (BytesRemaining
--)
385 /* Check if endpoint is empty - if so clear it and wait until ready for next packet */
386 if (!(Endpoint_BytesInEndpoint()))
390 while (!(Endpoint_IsOUTReceived()))
392 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
397 /* Read the byte from the USB interface and write to to the EEPROM */
398 eeprom_update_byte((uint8_t*)StartAddr
, Endpoint_Read_8());
400 /* Adjust counters */
405 /* Throw away the currently unused DFU file suffix */
406 DiscardFillerBytes(DFU_FILE_SUFFIX_SIZE
);
412 Endpoint_ClearStatusStage();
416 Endpoint_ClearSETUP();
418 while (!(Endpoint_IsINReady()))
420 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
424 if (DFU_State
!= dfuUPLOAD_IDLE
)
426 if ((DFU_State
== dfuERROR
) && IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x01)) // Blank Check
428 /* Blank checking is performed in the DFU_DNLOAD request - if we get here we've told the host
429 that the memory isn't blank, and the host is requesting the first non-blank address */
430 Endpoint_Write_16_LE(StartAddr
);
434 /* Idle state upload - send response to last issued command */
435 Endpoint_Write_8(ResponseByte
);
440 /* Determine the number of bytes remaining in the current block */
441 uint16_t BytesRemaining
= ((EndAddr
- StartAddr
) + 1);
443 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x00)) // Read FLASH
445 /* Calculate the number of words to be written from the number of bytes to be written */
446 uint16_t WordsRemaining
= (BytesRemaining
>> 1);
452 } CurrFlashAddress
= {.Words
= {StartAddr
, Flash64KBPage
}};
454 while (WordsRemaining
--)
456 /* Check if endpoint is full - if so clear it and wait until ready for next packet */
457 if (Endpoint_BytesInEndpoint() == FIXED_CONTROL_ENDPOINT_SIZE
)
461 while (!(Endpoint_IsINReady()))
463 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
468 /* Read the flash word and send it via USB to the host */
469 #if (FLASHEND > 0xFFFF)
470 Endpoint_Write_16_LE(pgm_read_word_far(CurrFlashAddress
.Long
));
472 Endpoint_Write_16_LE(pgm_read_word(CurrFlashAddress
.Long
));
475 /* Adjust counters */
476 CurrFlashAddress
.Long
+= 2;
479 /* Once reading is complete, start address equals the end address */
482 else if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x02)) // Read EEPROM
484 while (BytesRemaining
--)
486 /* Check if endpoint is full - if so clear it and wait until ready for next packet */
487 if (Endpoint_BytesInEndpoint() == FIXED_CONTROL_ENDPOINT_SIZE
)
491 while (!(Endpoint_IsINReady()))
493 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
498 /* Read the EEPROM byte and send it via USB to the host */
499 Endpoint_Write_8(eeprom_read_byte((uint8_t*)StartAddr
));
501 /* Adjust counters */
506 /* Return to idle state */
512 Endpoint_ClearStatusStage();
514 case DFU_REQ_GETSTATUS
:
515 Endpoint_ClearSETUP();
517 while (!(Endpoint_IsINReady()))
519 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
523 /* Write 8-bit status value */
524 Endpoint_Write_8(DFU_Status
);
526 /* Write 24-bit poll timeout value */
528 Endpoint_Write_16_LE(0);
530 /* Write 8-bit state value */
531 Endpoint_Write_8(DFU_State
);
533 /* Write 8-bit state string ID number */
538 Endpoint_ClearStatusStage();
540 case DFU_REQ_CLRSTATUS
:
541 Endpoint_ClearSETUP();
543 /* Reset the status value variable to the default OK status */
546 Endpoint_ClearStatusStage();
548 case DFU_REQ_GETSTATE
:
549 Endpoint_ClearSETUP();
551 while (!(Endpoint_IsINReady()))
553 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
557 /* Write the current device state to the endpoint */
558 Endpoint_Write_8(DFU_State
);
562 Endpoint_ClearStatusStage();
565 Endpoint_ClearSETUP();
567 /* Reset the current state variable to the default idle state */
570 Endpoint_ClearStatusStage();
575 /** Routine to discard the specified number of bytes from the control endpoint stream. This is used to
576 * discard unused bytes in the stream from the host, including the memory program block suffix.
578 * \param[in] NumberOfBytes Number of bytes to discard from the host from the control endpoint
580 static void DiscardFillerBytes(uint8_t NumberOfBytes
)
582 while (NumberOfBytes
--)
584 if (!(Endpoint_BytesInEndpoint()))
588 /* Wait until next data packet received */
589 while (!(Endpoint_IsOUTReceived()))
591 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
597 Endpoint_Discard_8();
602 /** Routine to process an issued command from the host, via a DFU_DNLOAD request wrapper. This routine ensures
603 * that the command is allowed based on the current secure mode flag value, and passes the command off to the
604 * appropriate handler function.
606 static void ProcessBootloaderCommand(void)
608 /* Check if device is in secure mode */
611 /* Don't process command unless it is a READ or chip erase command */
612 if (!(((SentCommand
.Command
== COMMAND_WRITE
) &&
613 IS_TWOBYTE_COMMAND(SentCommand
.Data
, 0x00, 0xFF)) ||
614 (SentCommand
.Command
== COMMAND_READ
)))
616 /* Set the state and status variables to indicate the error */
617 DFU_State
= dfuERROR
;
618 DFU_Status
= errWRITE
;
621 Endpoint_StallTransaction();
623 /* Don't process the command */
628 /* Dispatch the required command processing routine based on the command type */
629 switch (SentCommand
.Command
)
631 case COMMAND_PROG_START
:
632 ProcessMemProgCommand();
634 case COMMAND_DISP_DATA
:
635 ProcessMemReadCommand();
638 ProcessWriteCommand();
641 ProcessReadCommand();
643 case COMMAND_CHANGE_BASE_ADDR
:
644 if (IS_TWOBYTE_COMMAND(SentCommand
.Data
, 0x03, 0x00)) // Set 64KB flash page command
645 Flash64KBPage
= SentCommand
.Data
[2];
651 /** Routine to concatenate the given pair of 16-bit memory start and end addresses from the host, and store them
652 * in the StartAddr and EndAddr global variables.
654 static void LoadStartEndAddresses(void)
660 } Address
[2] = {{.Bytes
= {SentCommand
.Data
[2], SentCommand
.Data
[1]}},
661 {.Bytes
= {SentCommand
.Data
[4], SentCommand
.Data
[3]}}};
663 /* Load in the start and ending read addresses from the sent data packet */
664 StartAddr
= Address
[0].Word
;
665 EndAddr
= Address
[1].Word
;
668 /** Handler for a Memory Program command issued by the host. This routine handles the preparations needed
669 * to write subsequent data from the host into the specified memory.
671 static void ProcessMemProgCommand(void)
673 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x00) || // Write FLASH command
674 IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x01)) // Write EEPROM command
676 /* Load in the start and ending read addresses */
677 LoadStartEndAddresses();
679 /* If FLASH is being written to, we need to pre-erase the first page to write to */
680 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x00))
686 } CurrFlashAddress
= {.Words
= {StartAddr
, Flash64KBPage
}};
688 /* Erase the current page's temp buffer */
689 BootloaderAPI_ErasePage(CurrFlashAddress
.Long
);
692 /* Set the state so that the next DNLOAD requests reads in the firmware */
693 DFU_State
= dfuDNLOAD_IDLE
;
697 /** Handler for a Memory Read command issued by the host. This routine handles the preparations needed
698 * to read subsequent data from the specified memory out to the host, as well as implementing the memory
699 * blank check command.
701 static void ProcessMemReadCommand(void)
703 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x00) || // Read FLASH command
704 IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x02)) // Read EEPROM command
706 /* Load in the start and ending read addresses */
707 LoadStartEndAddresses();
709 /* Set the state so that the next UPLOAD requests read out the firmware */
710 DFU_State
= dfuUPLOAD_IDLE
;
712 else if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x01)) // Blank check FLASH command
714 uint32_t CurrFlashAddress
= 0;
716 while (CurrFlashAddress
< (uint32_t)BOOT_START_ADDR
)
718 /* Check if the current byte is not blank */
719 #if (FLASHEND > 0xFFFF)
720 if (pgm_read_byte_far(CurrFlashAddress
) != 0xFF)
722 if (pgm_read_byte(CurrFlashAddress
) != 0xFF)
725 /* Save the location of the first non-blank byte for response back to the host */
726 Flash64KBPage
= (CurrFlashAddress
>> 16);
727 StartAddr
= CurrFlashAddress
;
729 /* Set state and status variables to the appropriate error values */
730 DFU_State
= dfuERROR
;
731 DFU_Status
= errCHECK_ERASED
;
741 /** Handler for a Data Write command issued by the host. This routine handles non-programming commands such as
742 * bootloader exit (both via software jumps and hardware watchdog resets) and flash memory erasure.
744 static void ProcessWriteCommand(void)
746 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x03)) // Start application
748 /* Indicate that the bootloader is terminating */
751 /* Check if data supplied for the Start Program command - no data executes the program */
752 if (SentCommand
.DataSize
)
754 if (SentCommand
.Data
[1] == 0x01) // Start via jump
760 } Address
= {.Bytes
= {SentCommand
.Data
[4], SentCommand
.Data
[3]}};
762 /* Load in the jump address into the application start address pointer */
763 AppStartPtr
= Address
.FuncPtr
;
768 if (SentCommand
.Data
[1] == 0x00) // Start via watchdog
770 /* Unlock the forced application start mode of the bootloader if it is restarted */
771 MagicBootKey
= MAGIC_BOOT_KEY
;
773 /* Start the watchdog to reset the AVR once the communications are finalized */
774 wdt_enable(WDTO_250MS
);
776 else // Start via jump
778 /* Set the flag to terminate the bootloader at next opportunity if a valid application has been loaded */
779 if (pgm_read_word_near(0) == 0xFFFF)
780 RunBootloader
= false;
784 else if (IS_TWOBYTE_COMMAND(SentCommand
.Data
, 0x00, 0xFF)) // Erase flash
786 /* Clear the application section of flash */
787 for (uint32_t CurrFlashAddress
= 0; CurrFlashAddress
< (uint32_t)BOOT_START_ADDR
; CurrFlashAddress
+= SPM_PAGESIZE
)
788 BootloaderAPI_ErasePage(CurrFlashAddress
);
790 /* Memory has been erased, reset the security bit so that programming/reading is allowed */
795 /** Handler for a Data Read command issued by the host. This routine handles bootloader information retrieval
796 * commands such as device signature and bootloader version retrieval.
798 static void ProcessReadCommand(void)
800 const uint8_t BootloaderInfo
[3] = {BOOTLOADER_VERSION
, BOOTLOADER_ID_BYTE1
, BOOTLOADER_ID_BYTE2
};
801 const uint8_t SignatureInfo
[4] = {0x58, AVR_SIGNATURE_1
, AVR_SIGNATURE_2
, AVR_SIGNATURE_3
};
803 uint8_t DataIndexToRead
= SentCommand
.Data
[1];
804 bool ReadAddressInvalid
= false;
806 if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x00)) // Read bootloader info
808 if (DataIndexToRead
< 3)
809 ResponseByte
= BootloaderInfo
[DataIndexToRead
];
811 ReadAddressInvalid
= true;
813 else if (IS_ONEBYTE_COMMAND(SentCommand
.Data
, 0x01)) // Read signature byte
815 switch (DataIndexToRead
)
818 ResponseByte
= SignatureInfo
[0];
821 ResponseByte
= SignatureInfo
[1];
824 ResponseByte
= SignatureInfo
[2];
827 ResponseByte
= SignatureInfo
[3];
830 ReadAddressInvalid
= true;
835 if (ReadAddressInvalid
)
837 /* Set the state and status variables to indicate the error */
838 DFU_State
= dfuERROR
;
839 DFU_Status
= errADDRESS
;