Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/bsp_sd.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ extern "C" {
#include "PinNames.h"
#include "stm32_def.h"
#include "variant.h"
#if defined(STM32_CORE_VERSION) && (STM32_CORE_VERSION <= 0x020C0000)
#include "wiring_constants.h"
#else
#include "Common.h"
#endif
#if !defined(STM32_CORE_VERSION) || (STM32_CORE_VERSION <= 0x01060100)
#error "This library version required a STM32 core version > 1.6.1.\
Please update the core or install previous library version."
Expand Down
Loading