Skip to content

Commit

Permalink
fix(bw): bootloader not working with F407xG targets and > 512kb fw (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeerick committed May 12, 2024
1 parent fc0b61d commit 22ce06d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions radio/src/targets/taranis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ elseif ((CPU_TYPE_FULL STREQUAL STM32F407xE) OR (CPU_TYPE_FULL STREQUAL STM32F40
set(TARGET_LINKER_DIR stm32f40x)
if (CPU_TYPE_FULL STREQUAL STM32F407xG)
set(TARGET_FLASH_SIZE 1M)
add_definitions(-DSTM32F407xG)
endif()
elseif (CPU_TYPE_FULL STREQUAL STM32F413xG)
set(CPU_TYPE STM32F4)
Expand Down
2 changes: 1 addition & 1 deletion radio/src/targets/taranis/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void rotaryEncoderInit();
void rotaryEncoderCheck();
#endif

#if defined(STM32F413xx)
#if defined(STM32F413xx) || defined(STM32F407xG)
#define FLASHSIZE 0x100000 // 1M
#else
#define FLASHSIZE 0x80000 // 512k
Expand Down

0 comments on commit 22ce06d

Please sign in to comment.