🔨 BTT STM32G0B1RE xfer build (#24245)

This commit is contained in:
elimisback
2022-05-28 16:22:59 -04:00
committed by Scott Lahteine
parent d6c673b9de
commit f1802bc7fe
4 changed files with 17 additions and 1 deletions

View File

@ -4147,3 +4147,8 @@ static_assert(_PLUS_TEST(4), "HOMING_FEEDRATE_MM_M values must be positive.");
#elif ENABLED(DISABLE_JTAG) && !defined(JTAG_DISABLE)
#error "DISABLE_JTAG is not supported for the selected MCU/Board."
#endif
// Check requirements for upload.py
#if ENABLED(XFER_BUILD) && !BOTH(BINARY_FILE_TRANSFER, CUSTOM_FIRMWARE_UPLOAD)
#error "BINARY_FILE_TRANSFER and CUSTOM_FIRMWARE_UPLOAD are required for custom upload."
#endif