Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
6c081947
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6c081947
编写于
11月 24, 2018
作者:
xuzhuoyi96
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[bsp][tms320f28379d] Classify c28x into ti-dsp
上级
17301e46
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
16 addition
and
12 deletion
+16
-12
bsp/tms320f28379d/.config
bsp/tms320f28379d/.config
+2
-1
bsp/tms320f28379d/.project
bsp/tms320f28379d/.project
+4
-4
bsp/tms320f28379d/.settings/org.eclipse.core.resources.prefs
bsp/tms320f28379d/.settings/org.eclipse.core.resources.prefs
+2
-4
bsp/tms320f28379d/Kconfig
bsp/tms320f28379d/Kconfig
+1
-1
bsp/tms320f28379d/rtconfig.h
bsp/tms320f28379d/rtconfig.h
+2
-1
libcpu/Kconfig
libcpu/Kconfig
+5
-1
libcpu/ti-dsp/c28x/context.s
libcpu/ti-dsp/c28x/context.s
+0
-0
libcpu/ti-dsp/c28x/cpuport.c
libcpu/ti-dsp/c28x/cpuport.c
+0
-0
未找到文件。
bsp/tms320f28379d/.config
浏览文件 @
6c081947
...
...
@@ -62,7 +62,8 @@ CONFIG_RT_USING_DEVICE=y
CONFIG_RT_USING_CONSOLE
=
y
CONFIG_RT_CONSOLEBUF_SIZE
=
128
CONFIG_RT_CONSOLE_DEVICE_NAME
=
"uart"
CONFIG_ARCH_C28X
=
y
CONFIG_ARCH_TIDSP
=
y
CONFIG_ARCH_TIDSP_C28X
=
y
CONFIG_ARCH_CPU_STACK_GROWS_UPWARD
=
y
#
...
...
bsp/tms320f28379d/.project
浏览文件 @
6c081947
...
...
@@ -26,14 +26,14 @@
</natures>
<linkedResources>
<link>
<name>
C28X
</name>
<name>
Kernel
</name>
<type>
2
</type>
<locationURI>
PARENT-2-PROJECT_LOC/
libcpu/c28x
</locationURI>
<locationURI>
PARENT-2-PROJECT_LOC/
src
</locationURI>
</link>
<link>
<name>
Kernel
</name>
<name>
c28x
</name>
<type>
2
</type>
<locationURI>
PARENT-2-PROJECT_LOC/
src
</locationURI>
<locationURI>
PARENT-2-PROJECT_LOC/
libcpu/ti-dsp/c28x
</locationURI>
</link>
</linkedResources>
</projectDescription>
bsp/tms320f28379d/.settings/org.eclipse.core.resources.prefs
浏览文件 @
6c081947
eclipse.preferences.version=1
encoding//Debug/C28X/subdir_rules.mk=UTF-8
encoding//Debug/C28X/subdir_vars.mk=UTF-8
encoding//Debug/Kernel/subdir_rules.mk=UTF-8
encoding//Debug/Kernel/subdir_vars.mk=UTF-8
encoding//Debug/applications/subdir_rules.mk=UTF-8
encoding//Debug/applications/subdir_vars.mk=UTF-8
encoding//Debug/c28x/subdir_rules.mk=UTF-8
encoding//Debug/c28x/subdir_vars.mk=UTF-8
encoding//Debug/drivers/subdir_rules.mk=UTF-8
encoding//Debug/drivers/subdir_vars.mk=UTF-8
encoding//Debug/libraries/common/source/subdir_rules.mk=UTF-8
...
...
@@ -13,8 +13,6 @@ encoding//Debug/libraries/headers/cmd/subdir_rules.mk=UTF-8
encoding//Debug/libraries/headers/cmd/subdir_vars.mk=UTF-8
encoding//Debug/libraries/headers/source/subdir_rules.mk=UTF-8
encoding//Debug/libraries/headers/source/subdir_vars.mk=UTF-8
encoding//Debug/libraries/subdir_rules.mk=UTF-8
encoding//Debug/libraries/subdir_vars.mk=UTF-8
encoding//Debug/makefile=UTF-8
encoding//Debug/objects.mk=UTF-8
encoding//Debug/sources.mk=UTF-8
...
...
bsp/tms320f28379d/Kconfig
浏览文件 @
6c081947
...
...
@@ -20,7 +20,7 @@ config $PKGS_DIR
config SOC_TMS320F28X
bool
select ARCH_C28X
select ARCH_
TIDSP_
C28X
default y
source "$RTT_DIR/Kconfig"
...
...
bsp/tms320f28379d/rtconfig.h
浏览文件 @
6c081947
...
...
@@ -40,7 +40,8 @@
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 128
#define RT_CONSOLE_DEVICE_NAME "uart"
#define ARCH_C28X
#define ARCH_TIDSP
#define ARCH_TIDSP_C28X
#define ARCH_CPU_STACK_GROWS_UPWARD
/* RT-Thread Components */
...
...
libcpu/Kconfig
浏览文件 @
6c081947
...
...
@@ -86,8 +86,12 @@ config ARCH_RISCV
config ARCH_IA32
bool
config ARCH_
C28X
config ARCH_
TIDSP
bool
config ARCH_TIDSP_C28X
bool
select ARCH_TIDSP
select ARCH_CPU_STACK_GROWS_UPWARD
config ARCH_HOST_SIMULATOR
...
...
libcpu/c28x/context.s
→
libcpu/
ti-dsp/
c28x/context.s
浏览文件 @
6c081947
文件已移动
libcpu/c28x/cpuport.c
→
libcpu/
ti-dsp/
c28x/cpuport.c
浏览文件 @
6c081947
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录