init: homework4 test3

This commit is contained in:
2025-04-14 13:18:44 +08:00
parent 6fdc758b79
commit 0aec6a72cb
2 changed files with 16 additions and 1 deletions
+2 -1
View File
@@ -19,7 +19,8 @@
"targets": { "targets": {
"Debug": { "Debug": {
"excludeList": [ "excludeList": [
"src/test1.c" "src/test1.c",
"src/test2.c"
], ],
"toolchain": "Keil_C51", "toolchain": "Keil_C51",
"compileConfig": { "compileConfig": {
+14
View File
@@ -0,0 +1,14 @@
// test3.c
// 用一个数码管的静态显示来实现一个简单的秒表
#include "homework4.h"
void test3()
{
set_38_2SEG();
}
void main()
{
test3();
}