Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
591339e7
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看板
提交
591339e7
编写于
10月 16, 2017
作者:
B
Bernard Xiong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[BSP] fix compiling issue
上级
f47898bb
变更
15
隐藏空白更改
内联
并排
Showing
15 changed file
with
27 addition
and
28 deletion
+27
-28
bsp/beaglebone/applications/board.c
bsp/beaglebone/applications/board.c
+1
-0
bsp/efm32/application.c
bsp/efm32/application.c
+0
-2
bsp/frdm-k64f/applications/application.c
bsp/frdm-k64f/applications/application.c
+2
-13
bsp/lm3s8962/applications/application.c
bsp/lm3s8962/applications/application.c
+0
-2
bsp/lm3s8962/rtconfig.h
bsp/lm3s8962/rtconfig.h
+1
-0
bsp/lm3s9b9x/rtconfig.h
bsp/lm3s9b9x/rtconfig.h
+1
-1
bsp/mini2440/applications/application.c
bsp/mini2440/applications/application.c
+0
-2
bsp/mini2440/drivers/sdcard.c
bsp/mini2440/drivers/sdcard.c
+2
-2
bsp/mini2440/rtconfig.h
bsp/mini2440/rtconfig.h
+1
-0
bsp/stm32f0x/drivers/led.c
bsp/stm32f0x/drivers/led.c
+4
-2
bsp/stm32f0x/drivers/led.h
bsp/stm32f0x/drivers/led.h
+2
-2
bsp/stm32f0x/rtconfig.h
bsp/stm32f0x/rtconfig.h
+1
-1
bsp/stm32f107/applications/application.c
bsp/stm32f107/applications/application.c
+0
-1
components/libc/compilers/minilibc/stdint.h
components/libc/compilers/minilibc/stdint.h
+2
-0
components/libc/compilers/minilibc/stdio.h
components/libc/compilers/minilibc/stdio.h
+10
-0
未找到文件。
bsp/beaglebone/applications/board.c
浏览文件 @
591339e7
...
...
@@ -14,6 +14,7 @@
#include <rthw.h>
#include <rtthread.h>
#include <finsh.h>
#include "board.h"
#include <interrupt.h>
...
...
bsp/efm32/application.c
浏览文件 @
591339e7
...
...
@@ -34,8 +34,6 @@
#include <board.h>
#if defined(RT_USING_DFS)
/* dfs init */
#include <dfs_init.h>
/* dfs filesystem:ELM filesystem init */
#include <dfs_elm.h>
/* dfs Filesystem APIs */
...
...
bsp/frdm-k64f/applications/application.c
浏览文件 @
591339e7
...
...
@@ -17,6 +17,7 @@
*/
/*@{*/
#include <stdint.h>
#include <stdio.h>
#include "MK64F12.h"
...
...
@@ -25,12 +26,6 @@
#include "led.h"
#ifdef RT_USING_LWIP
#include <lwip/sys.h>
#include <lwip/api.h>
#include <netif/ethernetif.h>
#endif
void
rt_init_thread_entry
(
void
*
parameter
)
{
#ifdef RT_USING_COMPONENTS_INIT
...
...
@@ -72,15 +67,9 @@ int rt_application_init()
{
rt_thread_t
init_thread
;
#if (RT_THREAD_PRIORITY_MAX == 32)
init_thread
=
rt_thread_create
(
"init"
,
rt_init_thread_entry
,
RT_NULL
,
2048
,
8
,
20
);
#else
init_thread
=
rt_thread_create
(
"init"
,
rt_init_thread_entry
,
RT_NULL
,
2048
,
80
,
20
);
#endif
2048
,
RT_THREAD_PRIORITY_MAX
/
3
,
20
);
if
(
init_thread
!=
RT_NULL
)
rt_thread_startup
(
init_thread
);
...
...
bsp/lm3s8962/applications/application.c
浏览文件 @
591339e7
...
...
@@ -21,8 +21,6 @@
#include <rtthread.h>
#ifdef RT_USING_DFS
/* dfs init */
#include <dfs_init.h>
/* dfs filesystem:ELM FatFs filesystem init */
#include <dfs_elm.h>
/* dfs Filesystem APIs */
...
...
bsp/lm3s8962/rtconfig.h
浏览文件 @
591339e7
...
...
@@ -57,6 +57,7 @@
/* SECTION: Device System */
/* Using Device System*/
#define RT_USING_DEVICE
#define RT_USING_DEVICE_IPC
#define RT_USING_UART1
// #define RT_USING_UART2
...
...
bsp/lm3s9b9x/rtconfig.h
浏览文件 @
591339e7
...
...
@@ -112,7 +112,7 @@
#define RT_LWIP_ETH_PAD_SIZE 2
/* Enable SNMP protocol*/
#define RT_LWIP_SNMP
//
#define RT_LWIP_SNMP
/* Using DHCP*/
/* #define RT_LWIP_DHCP */
...
...
bsp/mini2440/applications/application.c
浏览文件 @
591339e7
...
...
@@ -26,8 +26,6 @@
#include "dm9000.h"
#ifdef RT_USING_DFS
/* dfs init */
#include <dfs_init.h>
/* dfs filesystem:ELM FatFs filesystem init */
#include <dfs_elm.h>
/* dfs Filesystem APIs */
...
...
bsp/mini2440/drivers/sdcard.c
浏览文件 @
591339e7
...
...
@@ -398,7 +398,7 @@ static rt_size_t rt_sdcard_read(rt_device_t dev,
if
(
dev
==
RT_NULL
)
{
rt_set_errno
(
-
DFS_STATUS_
EINVAL
);
rt_set_errno
(
-
EINVAL
);
return
0
;
}
...
...
@@ -429,7 +429,7 @@ static rt_size_t rt_sdcard_write(rt_device_t dev,
if
(
dev
==
RT_NULL
)
{
rt_set_errno
(
-
DFS_STATUS_
EINVAL
);
rt_set_errno
(
-
EINVAL
);
return
0
;
}
...
...
bsp/mini2440/rtconfig.h
浏览文件 @
591339e7
...
...
@@ -64,6 +64,7 @@
// <section name="RT_USING_DEVICE" description="Using Device Driver Framework" default="true" >
#define RT_USING_DEVICE
#define RT_USING_DEVICE_IPC
// <bool name="RT_USING_UART0" description="Using UART0" default="true" />
#define RT_USING_UART0
// <integer name="RT_UART_RX_BUFFER_SIZE" description="The buffer size for UART reception" default="64" />
...
...
bsp/stm32f0x/drivers/led.c
浏览文件 @
591339e7
...
...
@@ -12,6 +12,7 @@
* 2013-11-15 bright the first version
*/
#include <rtthread.h>
#include "led.h"
/*
...
...
@@ -20,7 +21,7 @@ LED_RED : PC9
*/
/* Initial led gpio pin */
void
rt_hw_led_init
(
void
)
int
rt_hw_led_init
(
void
)
{
GPIO_InitTypeDef
GPIO_InitStructure
;
...
...
@@ -34,7 +35,8 @@ void rt_hw_led_init(void)
GPIO_InitStructure
.
GPIO_PuPd
=
GPIO_PuPd_NOPULL
;
GPIO_InitStructure
.
GPIO_Speed
=
GPIO_Speed_50MHz
;
GPIO_Init
(
GPIOC
,
&
GPIO_InitStructure
);
}
return
0
;
}
/* Initial components for device */
INIT_DEVICE_EXPORT
(
rt_hw_led_init
);
bsp/stm32f0x/drivers/led.h
浏览文件 @
591339e7
...
...
@@ -15,13 +15,13 @@
#ifndef __LED_H__
#define __LED_H__
#include <rthw.h>
#include <rtthread.h>
#include <stm32f0xx.h>
#define rt_hw_led_on() GPIO_SetBits(GPIOC, GPIO_Pin_9)
#define rt_hw_led_off() GPIO_ResetBits(GPIOC, GPIO_Pin_9)
void
rt_hw_led_init
(
void
);
int
rt_hw_led_init
(
void
);
#endif
bsp/stm32f0x/rtconfig.h
浏览文件 @
591339e7
...
...
@@ -34,7 +34,7 @@
#define RT_USING_SEMAPHORE
/* Using Mutex */
/* #define RT_USING_MUTEX */
#define RT_USING_MUTEX
/* Using Event */
/* #define RT_USING_EVENT */
...
...
bsp/stm32f107/applications/application.c
浏览文件 @
591339e7
...
...
@@ -22,7 +22,6 @@
#ifdef RT_USING_DFS
#include <dfs_fs.h>
#include <dfs_init.h>
#include <dfs_elm.h>
#endif
...
...
components/libc/compilers/minilibc/stdint.h
浏览文件 @
591339e7
...
...
@@ -11,6 +11,8 @@ typedef rt_int32_t int32_t;
typedef
rt_uint32_t
uint32_t
;
typedef
long
long
int64_t
;
typedef
unsigned
long
long
uint64_t
;
typedef
signed
long
intptr_t
;
typedef
unsigned
long
uintptr_t
;
/*
* 7.18.2 Limits of specified-width integer types.
...
...
components/libc/compilers/minilibc/stdio.h
浏览文件 @
591339e7
...
...
@@ -4,5 +4,15 @@
#define BUFSIZ 128
#define EOF (-1)
#ifndef SEEK_SET
#define SEEK_SET 0
/* set file offset to offset */
#endif
#ifndef SEEK_CUR
#define SEEK_CUR 1
/* set file offset to current plus offset */
#endif
#ifndef SEEK_END
#define SEEK_END 2
/* set file offset to EOF plus offset */
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录