📦️ STM32F103RE_btt(_USB) with HAL/STM32 (#22040)

This commit is contained in:
Victor Oliveira
2021-06-05 01:49:00 -03:00
committed by Scott Lahteine
parent c90fa530db
commit f3f3d202ac
7 changed files with 51 additions and 20 deletions

View File

@ -21,9 +21,7 @@
*/
#pragma once
#if NOT_TARGET(TARGET_STM32F1)
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
#endif
#include "env_validate.h"
#define BOARD_INFO_NAME "BTT SKR E3 DIP V1.x"

View File

@ -21,9 +21,7 @@
*/
#pragma once
#if NOT_TARGET(__STM32F1__, STM32F1)
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
#endif
#include "env_validate.h"
// Release PB3/PB4 (E0 STP/DIR) from JTAG pins
#define DISABLE_JTAG

View File

@ -21,9 +21,7 @@
*/
#pragma once
#if NOT_TARGET(TARGET_STM32F1)
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
#endif
#include "env_validate.h"
#define BOARD_INFO_NAME "BTT SKR Mini V1.1"

View File

@ -21,9 +21,9 @@
*/
#pragma once
#if NOT_TARGET(TARGET_STM32F1)
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
#elif HOTENDS > 1 || E_STEPPERS > 1
#include "env_validate.h"
#if HOTENDS > 1 || E_STEPPERS > 1
#error "CCROBOT-ONLINE MEEB_3DP only supports one hotend / E-stepper. Comment out this line to continue."
#endif