Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
93060f24
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看板
提交
93060f24
编写于
3月 23, 2018
作者:
lymzzyh
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'upstream/master'
上级
0fcf08ae
e8ee150d
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
30 addition
and
11 deletion
+30
-11
bsp/imxrt1052-evk/drivers/drv_hp_rtc.c
bsp/imxrt1052-evk/drivers/drv_hp_rtc.c
+0
-2
bsp/v2m-mps2/rtconfig.py
bsp/v2m-mps2/rtconfig.py
+0
-4
components/drivers/Kconfig
components/drivers/Kconfig
+1
-0
components/drivers/rtc/rtc.c
components/drivers/rtc/rtc.c
+2
-0
components/libc/compilers/armlibc/sys/unistd.h
components/libc/compilers/armlibc/sys/unistd.h
+5
-0
components/libc/compilers/dlib/fcntl.h
components/libc/compilers/dlib/fcntl.h
+0
-0
components/libc/compilers/dlib/sys/stat.h
components/libc/compilers/dlib/sys/stat.h
+0
-0
components/libc/compilers/dlib/sys/unistd.h
components/libc/compilers/dlib/sys/unistd.h
+5
-0
include/libc/libc_stat.h
include/libc/libc_stat.h
+17
-5
未找到文件。
bsp/imxrt1052-evk/drivers/drv_hp_rtc.c
浏览文件 @
93060f24
...
...
@@ -61,7 +61,6 @@ static int set_timestamp(time_t timestamp)
return
RT_EOK
;
}
/* ӿ */
static
rt_err_t
rt1052_hp_rtc_init
(
rt_device_t
dev
)
{
snvs_hp_rtc_config_t
snvsRtcConfig
;
...
...
@@ -112,7 +111,6 @@ static rt_err_t rt1052_hp_rtc_control(rt_device_t dev, int cmd, void *args)
}
break
;
/* Ч */
default:
return
RT_EINVAL
;
}
...
...
bsp/v2m-mps2/rtconfig.py
浏览文件 @
93060f24
...
...
@@ -5,9 +5,6 @@ ARCH='arm'
CPU
=
'cortex-m7'
CROSS_TOOL
=
'keil'
if
os
.
getenv
(
'RTT_CC'
):
CROSS_TOOL
=
os
.
getenv
(
'RTT_CC'
)
if
CROSS_TOOL
==
'keil'
:
PLATFORM
=
'armcc'
EXEC_PATH
=
'C:/Keil_v5'
...
...
@@ -48,7 +45,6 @@ if PLATFORM == 'armcc':
CFLAGS
+=
' --c99'
POST_ACTION
=
'fromelf -z $TARGET'
# POST_ACTION = 'fromelf --bin $TARGET --output rtthread.bin \nfromelf -z $TARGET'
else
:
print
(
"only support armcc in this bsp"
)
exit
(
-
1
)
components/drivers/Kconfig
浏览文件 @
93060f24
...
...
@@ -90,6 +90,7 @@ config RT_USING_RTC
default n
config RTC_SYNC_USING_NTP
bool "Using NTP auto sync RTC time"
select PKG_USING_NETUTILS
select PKG_NETUTILS_NTP
default n
...
...
components/drivers/rtc/rtc.c
浏览文件 @
93060f24
...
...
@@ -225,6 +225,8 @@ int rt_rtc_ntp_sync_init(void)
}
init_ok
=
RT_TRUE
;
return
RT_EOK
;
}
INIT_COMPONENT_EXPORT
(
rt_rtc_ntp_sync_init
);
#endif
/* RTC_SYNC_USING_NTP */
...
...
components/libc/compilers/armlibc/sys/unistd.h
浏览文件 @
93060f24
...
...
@@ -4,6 +4,11 @@
#include <rtthread.h>
#ifdef RT_USING_DFS
#define STDIN_FILENO 0
/* standard input file descriptor */
#define STDOUT_FILENO 1
/* standard output file descriptor */
#define STDERR_FILENO 2
/* standard error file descriptor */
#include <dfs_posix.h>
#else
#define _FREAD 0x0001
/* read enabled */
...
...
components/libc/compilers/dlib/fcntl.h
0 → 100644
浏览文件 @
93060f24
components/libc/compilers/dlib/sys/stat.h
0 → 100644
浏览文件 @
93060f24
components/libc/compilers/dlib/sys/unistd.h
浏览文件 @
93060f24
...
...
@@ -2,6 +2,11 @@
#define _SYS_UNISTD_H
#ifdef RT_USING_DFS
#define STDIN_FILENO 0
/* standard input file descriptor */
#define STDOUT_FILENO 1
/* standard output file descriptor */
#define STDERR_FILENO 2
/* standard error file descriptor */
#include <dfs_posix.h>
#else
#define _FREAD 0x0001
/* read enabled */
...
...
include/libc/libc_stat.h
浏览文件 @
93060f24
...
...
@@ -77,11 +77,23 @@
struct
stat
{
struct
rt_device
*
st_dev
;
uint16_t
st_mode
;
uint32_t
st_size
;
time_t
st_mtime
;
uint32_t
st_blksize
;
struct
rt_device
*
st_dev
;
uint16_t
st_ino
;
uint16_t
st_mode
;
uint16_t
st_nlink
;
uint16_t
st_uid
;
uint16_t
st_gid
;
struct
rt_device
*
st_rdev
;
uint32_t
st_size
;
time_t
st_atime
;
long
st_spare1
;
time_t
st_mtime
;
long
st_spare2
;
time_t
st_ctime
;
long
st_spare3
;
uint32_t
st_blksize
;
uint32_t
st_blocks
;
long
st_spare4
[
2
];
};
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录