Fixed CDC and DFU bootloaders API function offsets incorrect on some devices (thanks to Rod DeMay).
This commit is contained in:
		
							parent
							
								
									70fd816b09
								
							
						
					
					
						commit
						96fd39eda8
					
				
					 5 changed files with 42 additions and 21 deletions
				
			
		| 
						 | 
				
			
			@ -48,7 +48,15 @@ BootloaderAPI_ReadLock_Trampoline:
 | 
			
		|||
	jmp BootloaderAPI_ReadLock
 | 
			
		||||
BootloaderAPI_WriteLock_Trampoline:
 | 
			
		||||
	jmp BootloaderAPI_WriteLock
 | 
			
		||||
BootloaderAPU_UNUSED:
 | 
			
		||||
BootloaderAPU_UNUSED1:
 | 
			
		||||
	ret
 | 
			
		||||
BootloaderAPU_UNUSED2:
 | 
			
		||||
	ret
 | 
			
		||||
BootloaderAPU_UNUSED3:
 | 
			
		||||
	ret
 | 
			
		||||
BootloaderAPU_UNUSED4:
 | 
			
		||||
	ret
 | 
			
		||||
BootloaderAPU_UNUSED5:
 | 
			
		||||
	ret
 | 
			
		||||
 | 
			
		||||
; API function jump table
 | 
			
		||||
| 
						 | 
				
			
			@ -62,11 +70,11 @@ BootloaderAPI_JumpTable:
 | 
			
		|||
	rjmp BootloaderAPI_ReadFuse_Trampoline
 | 
			
		||||
	rjmp BootloaderAPI_ReadLock_Trampoline
 | 
			
		||||
	rjmp BootloaderAPI_WriteLock_Trampoline
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED ; UNUSED ENTRY
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED1 ; UNUSED ENTRY 1
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED2 ; UNUSED ENTRY 2
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED3 ; UNUSED ENTRY 3
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED4 ; UNUSED ENTRY 4
 | 
			
		||||
	rjmp BootloaderAPU_UNUSED5 ; UNUSED ENTRY 5
 | 
			
		||||
 | 
			
		||||
; Bootloader table signatures and information
 | 
			
		||||
.org (96 - 8)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -100,7 +100,9 @@
 | 
			
		|||
 *  following layout:
 | 
			
		||||
 *
 | 
			
		||||
 *  \code
 | 
			
		||||
 *  #define BOOTLOADER_API_CALL(Index)        (void*)(((FLASHEND - 32) + (2 * Index)) / 2)
 | 
			
		||||
 *  #define BOOTLOADER_API_TABLE_SIZE          32
 | 
			
		||||
 *  #define BOOTLOADER_API_TABLE_START         ((FLASHEND + 1UL) - BOOTLOADER_API_TABLE_SIZE)
 | 
			
		||||
 *  #define BOOTLOADER_API_CALL(Index)         (void*)((BOOTLOADER_API_TABLE_START + (Index * 2)) / 2)
 | 
			
		||||
 *
 | 
			
		||||
 *  void    (*BootloaderAPI_ErasePage)(uint32_t Address)               = BOOTLOADER_API_CALL(0);
 | 
			
		||||
 *  void    (*BootloaderAPI_WritePage)(uint32_t Address)               = BOOTLOADER_API_CALL(1);
 | 
			
		||||
| 
						 | 
				
			
			@ -110,13 +112,13 @@
 | 
			
		|||
 *  uint8_t (*BootloaderAPI_ReadLock)(void)                            = BOOTLOADER_API_CALL(5);
 | 
			
		||||
 *  void    (*BootloaderAPI_WriteLock)(uint8_t LockBits)               = BOOTLOADER_API_CALL(6);
 | 
			
		||||
 *
 | 
			
		||||
 *  #define BOOTLOADER_MAGIC_SIGNATURE_START   (FLASHEND - 2)
 | 
			
		||||
 *  #define BOOTLOADER_MAGIC_SIGNATURE_START   (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 2))
 | 
			
		||||
 *  #define BOOTLOADER_MAGIC_SIGNATURE         0xDCFB
 | 
			
		||||
 *
 | 
			
		||||
 *  #define BOOTLOADER_CLASS_SIGNATURE_START   (FLASHEND - 4)
 | 
			
		||||
 *  #define BOOTLOADER_DFU_SIGNATURE           0xDFB1
 | 
			
		||||
 *  #define BOOTLOADER_CLASS_SIGNATURE_START   (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 4))
 | 
			
		||||
 *  #define BOOTLOADER_CDC_SIGNATURE           0xDFB1
 | 
			
		||||
 *
 | 
			
		||||
 *  #define BOOTLOADER_ADDRESS_START           (FLASHEND - 8)
 | 
			
		||||
 *  #define BOOTLOADER_ADDRESS_START           (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 8))
 | 
			
		||||
 *  #define BOOTLOADER_ADDRESS_LENGTH          4
 | 
			
		||||
 *  \endcode
 | 
			
		||||
 *
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue