Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃┕ Fix MCU check for STM32H7-based BTT Octopus Pro V1 #26831

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion Marlin/src/pins/stm32f4/pins_BTT_OCTOPUS_V1_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
*/
#pragma once

#include "env_validate.h"
#if NOT_TARGET(STM32H7)
sjasonsmith marked this conversation as resolved.
Show resolved Hide resolved
#include "env_validate.h"
#else
#include "../stm32h7/env_validate.h"
#endif

#define HAS_OTG_USB_HOST_SUPPORT // USB Flash Drive support
#define USES_DIAG_JUMPERS
Expand Down