21 lines
289 B
C
21 lines
289 B
C
//
|
|
// Created by anonymous on 2026/5/24.
|
|
//
|
|
/* C标准库头文件 */
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
/* BSP文件 */
|
|
#include "main.h"
|
|
#include "Voilet.h"
|
|
|
|
int main(void) {
|
|
|
|
VoiletBspInit();
|
|
|
|
while (1) {
|
|
LedToggle(LED0);
|
|
DelayMs(100);
|
|
}
|
|
|
|
return 0;
|
|
} |