only:alphax-4chan_f7

get rid of the 'undef' patter just move all defaults above f4 include?
This commit is contained in:
Andrey 2024-06-24 17:17:15 -04:00
parent 222e5377e6
commit f22af99597
2 changed files with 16 additions and 16 deletions

View File

@ -461,12 +461,13 @@
* PE5
*/
// allow override of EFI_USE_UART_DMA from cmdline passed defs
#ifndef EFI_USE_UART_DMA
#define EFI_USE_UART_DMA TRUE
#endif
#ifndef AUX_SERIAL_DEVICE
#define AUX_SERIAL_DEVICE (&SD6)
#endif
#ifndef EFI_CONSOLE_TX_BRAIN_PIN
#define EFI_CONSOLE_TX_BRAIN_PIN Gpio::C10

View File

@ -36,25 +36,24 @@
#define EFI_USE_COMPRESSED_INI_MSD TRUE
#endif
// note order of include - first we set F7 defaults (above) and only later we apply F4 defaults
#include "../stm32f4ems/efifeatures.h"
// todo: get rid of the 'undef' patter just move all defaults above f4 include?
#undef EFI_MC33816
#define EFI_MC33816 FALSE
// todo: our "DMA-half" ChibiOS patch not implemented for USARTv2/STM32F7/STM32H7
#undef EFI_USE_UART_DMA
#define EFI_USE_UART_DMA FALSE
#ifndef LUA_USER_HEAP
#define LUA_USER_HEAP 100000
#endif
// UART driver not implemented on F7
#ifndef AUX_SERIAL_DEVICE
#define AUX_SERIAL_DEVICE (&SD6)
#endif
// todo: our "DMA-half" ChibiOS patch not implemented for USARTv2/STM32F7/STM32H7
#ifndef EFI_USE_UART_DMA
#define EFI_USE_UART_DMA FALSE
#endif
// F7 may have dual bank, so flash on its own (low priority) thread so as to not block any other operations
#ifndef EFI_FLASH_WRITE_THREAD
#define EFI_FLASH_WRITE_THREAD TRUE
#endif
#undef LUA_USER_HEAP
#define LUA_USER_HEAP 100000
// note order of include - first we set F7 defaults (above) and only later we apply F4 defaults
#include "../stm32f4ems/efifeatures.h"