Skip to main content
AAlzh.1
Associate II
March 10, 2020
Question

How to find the attribution name for the maple mini board/chip for Arduino programming ?

  • March 10, 2020
  • 1 reply
  • 935 views

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
#endif

Is the attribution "STM32_SERIES_F1" the correct one ?

This topic has been closed for replies.

1 reply

waclawek.jan
Super User
March 10, 2020

There's not much knowledge here about Arduino. You may want to go to the stm32duino forum for help.

JW

AAlzh.1
AAlzh.1Author
Associate II
March 10, 2020

Thank you so much ! Should I delete this question ?