From 6ab7cc4590090a5f7b86dd2fc3566c56118c306e Mon Sep 17 00:00:00 2001 From: bacon Date: Mon, 10 Feb 2025 00:08:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E6=B5=8B=E8=AF=95=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E4=B8=8B=E7=9A=84=E5=8E=9F=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E7=B3=BB=E7=BB=9F=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tb/sw/src/MstMain.c | 2 +- tb/sw/src/SlvMain.c | 2 +- tb/sw/src/{mstMainCfg.h => system_cfg.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tb/sw/src/{mstMainCfg.h => system_cfg.h} (100%) diff --git a/tb/sw/src/MstMain.c b/tb/sw/src/MstMain.c index 3a57953..d713fad 100644 --- a/tb/sw/src/MstMain.c +++ b/tb/sw/src/MstMain.c @@ -1,6 +1,6 @@ #include #include "tl2cdr.h" -#include "mstMainCfg.h" +#include "system_cfg.h" #include "sysDef.h" volatile uint32_t *const plic_priority = (uint32_t *)(0xc000000U); diff --git a/tb/sw/src/SlvMain.c b/tb/sw/src/SlvMain.c index 9e360e5..9c8028b 100644 --- a/tb/sw/src/SlvMain.c +++ b/tb/sw/src/SlvMain.c @@ -1,9 +1,9 @@ - #include // #include "uart.h" // #include "gpio.h" // #include "timer.h" #include "tl2cdr.h" +#include "system_cfg.h" volatile uint32_t *const plic_priority = (uint32_t *)(0xc000000U); diff --git a/tb/sw/src/mstMainCfg.h b/tb/sw/src/system_cfg.h similarity index 100% rename from tb/sw/src/mstMainCfg.h rename to tb/sw/src/system_cfg.h