Question
How to find the attribution name for the maple mini board/chip for Arduino programming ?
Where to find the attribution name for the STM32 maple mini in the STM32 master that is done for Arduino platform ?
I reached this state of code but I don't if the attribution for the maple mini is correct:
#if defined(__AVR_ATmega328P__)
#define CS_PIN 10
#define MOSI_PIN 11
#define CLK_PIN 13
#elif defined(STM32_SERIES_F1)
#define CS_PIN PB12
#define MOSI_PIN PB15
#define CLK_PIN PB13
#endifIs the attribution "STM32_SERIES_F1" the correct one ?
