[bsp] revert delete of stm32f407-sparkfire RTduino pinout

This commit is contained in:
Meco Man
2024-04-15 22:07:20 -04:00
parent 9c359fd4c8
commit d10fb37c05
6 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/*
* Copyright (c) 2006-2024, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2024-04-08 Li ZhenHong first version
*/
#include <Arduino.h>
void setup(void)
{
/* put your setup code here, to run once: */
Serial.begin();
}
void loop(void)
{
/* put your main code here, to run repeatedly: */
Serial.println("Hello Arduino!");
delay(800);
}