re-enable ini drive on stm32f7

This commit is contained in:
Matthew Kennedy 2023-05-05 16:33:23 -07:00
parent 1ffd0bd34b
commit 45cb8f3607
3 changed files with 3 additions and 7 deletions

View File

@ -37,5 +37,6 @@ Release template (copy/paste this for new release):
- Sensor checker wasn't checking sensors
- Removed vestigial warning about unset ignition pins #79
- Gear detection sometimes didn't work
- Restore built-in INI storage on STM32F7-based ECUs
### For older changelog entries prior to fork from rusEFI, see CHANGELOG.rusefi.md

View File

@ -10,12 +10,6 @@
* @author Andrey Belomutskiy, (c) 2012-2020
*/
// Disable ini ramdisk as a mitigation of https://github.com/rusefi/rusefi/issues/3775
// See STM32F7.ld for more info
#ifndef EFI_EMBED_INI_MSD
#define EFI_EMBED_INI_MSD FALSE
#endif
#include "../stm32f4ems/efifeatures.h"
#pragma once

View File

@ -26,7 +26,8 @@
*/
/* TODO: 512k flash limit is a mitigation for https://github.com/rusefi/rusefi/issues/3566 and https://github.com/rusefi/rusefi/issues/3775 */
flash_size = DEFINED(FLASH_SIZE) ? FLASH_SIZE : 512k;
/* flash_size = DEFINED(FLASH_SIZE) ? FLASH_SIZE : 512k; */
flash_size = DEFINED(FLASH_SIZE) ? FLASH_SIZE : 768k;
/* OpenBLT <-> main FW shared area */
_OpenBLT_Shared_Params_Size = DEFINED(BOOTLOADER) ? 16 : 0;