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
5 changes: 4 additions & 1 deletion variants/Generic_F411Cx/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ extern "C" {
#define LED_GREEN LED_BUILTIN

// On-board user button
#if !defined(USER_BTN) && !defined(ARDUINO_BLACKPILL_F411CE)
#ifdef ARDUINO_BLACKPILL_F411CE
#define USER_BTN PA0
#endif
#if !defined(USER_BTN)
#define USER_BTN PC13
#endif

Expand Down