forked from mirrors/qmk_firmware
Workaround for G431 eeprom emulation (#23002)
This commit is contained in:
parent
16800ea8a5
commit
93f20e012e
2 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
// Copyright 2024 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
#pragma once
|
||||
|
||||
// TODO: Remove when upstream no longer requires patching
|
||||
#include <stm32_registry.h>
|
||||
|
||||
#include_next <hal_lld.h>
|
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2024 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
#pragma once
|
||||
|
||||
// TODO: Remove when STM32_FLASH_SECTORS_PER_BANK fixed upstream
|
||||
#ifndef STM32_FLASH_SECTORS_PER_BANK
|
||||
# define STM32_FLASH_SECTORS_PER_BANK 64
|
||||
#endif
|
||||
|
||||
#include_next <stm32_registry.h>
|
||||
|
||||
// TODO: Remove when STM32_FLASH_NUMBER_OF_BANKS fixed upstream
|
||||
#undef STM32_FLASH_NUMBER_OF_BANKS
|
||||
#define STM32_FLASH_NUMBER_OF_BANKS 1
|
Loading…
Reference in a new issue