[SBP] Stm32F407-rt-spark adapts to RTduino

This commit is contained in:
LZerro
2024-04-12 06:46:52 +08:00
committed by GitHub
parent 83bd05391f
commit e50fbe8b94
17 changed files with 667 additions and 1246 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);
}