Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature] Increase STM32L0 option_size to 20 #1046

Merged
merged 1 commit into from
Oct 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/stlink-lib/chipid.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ static const struct stlink_chipid_params devices[] = {
.bootrom_base = 0x1ff0000,
.bootrom_size = 0x1000,
.option_base = STM32_L0_CATx_OPTION_BYTES_BASE,
.option_size = 4,
.option_size = 20,
},
{
// STM32L0x Category 5
Expand All @@ -400,7 +400,7 @@ static const struct stlink_chipid_params devices[] = {
.bootrom_base = 0x1ff0000,
.bootrom_size = 0x2000,
.option_base = STM32_L0_CATx_OPTION_BYTES_BASE,
.option_size = 4,
.option_size = 20,
},
{
// STM32L0x Category 2
Expand All @@ -414,7 +414,7 @@ static const struct stlink_chipid_params devices[] = {
.bootrom_base = 0x1ff0000,
.bootrom_size = 0x1000,
.option_base = STM32_L0_CATx_OPTION_BYTES_BASE,
.option_size = 4,
.option_size = 20,
},
{
// STM32F334, STM32F303x6/8, and STM32F328
Expand Down