提交 9da1f7d3 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #778 from TanekLiang/incompatible_type

Fix incompatible type error
...@@ -18,7 +18,7 @@ extern void rt_hw_board_init(void); ...@@ -18,7 +18,7 @@ extern void rt_hw_board_init(void);
extern void rt_application_init(void); extern void rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -70,7 +70,7 @@ void rtthread_startup(void) ...@@ -70,7 +70,7 @@ void rtthread_startup(void)
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
/* init finsh */ /* init finsh */
extern void finsh_system_init(void); extern int finsh_system_init(void);
finsh_system_init(); finsh_system_init();
finsh_set_device("uart0"); finsh_set_device("uart0");
#endif #endif
......
...@@ -62,7 +62,7 @@ extern void rt_application_init(void); ...@@ -62,7 +62,7 @@ extern void rt_application_init(void);
#endif #endif
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
......
...@@ -468,7 +468,7 @@ void finsh_system_var_init(const void* begin, const void* end) ...@@ -468,7 +468,7 @@ void finsh_system_var_init(const void* begin, const void* end)
* *
* This function will initialize finsh shell * This function will initialize finsh shell
*/ */
void finsh_system_init(void) int finsh_system_init(void)
{ {
rt_err_t result; rt_err_t result;
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -30,7 +30,7 @@ extern void rt_hw_serial_init(void); ...@@ -30,7 +30,7 @@ extern void rt_hw_serial_init(void);
/*@{*/ /*@{*/
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(char* device); extern void finsh_set_device(char* device);
#endif #endif
......
...@@ -30,7 +30,7 @@ extern void rt_hw_serial_init(void); ...@@ -30,7 +30,7 @@ extern void rt_hw_serial_init(void);
/*@{*/ /*@{*/
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(char* device); extern void finsh_set_device(char* device);
#endif #endif
......
...@@ -30,7 +30,7 @@ extern void rt_hw_serial_init(void); ...@@ -30,7 +30,7 @@ extern void rt_hw_serial_init(void);
/*@{*/ /*@{*/
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(char* device); extern void finsh_set_device(char* device);
#endif #endif
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
/*@{*/ /*@{*/
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
extern int rt_application_init(void); extern int rt_application_init(void);
...@@ -43,7 +43,7 @@ extern void rt_show_version(void); ...@@ -43,7 +43,7 @@ extern void rt_show_version(void);
extern rt_err_t rt_hw_serial_init(void); extern rt_err_t rt_hw_serial_init(void);
#endif #endif
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
#ifdef __CC_ARM #ifdef __CC_ARM
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
#include <finsh.h> #include <finsh.h>
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
#include <LPC24xx.h> #include <LPC24xx.h>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
extern void rt_hw_interrupt_init(void); extern void rt_hw_interrupt_init(void);
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
#include <finsh.h> #include <finsh.h>
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
extern void rt_hw_led_flash(void); extern void rt_hw_led_flash(void);
......
...@@ -61,7 +61,7 @@ extern struct rt_device uart2_device; ...@@ -61,7 +61,7 @@ extern struct rt_device uart2_device;
#endif #endif
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
/** /**
......
...@@ -35,7 +35,7 @@ extern int Image$$RW_RAM1$$ZI$$Limit; ...@@ -35,7 +35,7 @@ extern int Image$$RW_RAM1$$ZI$$Limit;
#endif #endif
extern void rt_application_init(void); extern void rt_application_init(void);
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void sd_init(void); extern void sd_init(void);
void rtthread_startup() void rtthread_startup()
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -20,7 +20,7 @@ extern int _ramfunc_end; ...@@ -20,7 +20,7 @@ extern int _ramfunc_end;
#define PIC32_SRAM_END (0xA0000000 + 1024UL*128) //795F512L 512K FLASH 128KB SRAM #define PIC32_SRAM_END (0xA0000000 + 1024UL*128) //795F512L 512K FLASH 128KB SRAM
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -28,7 +28,7 @@ extern rt_err_t eth_system_device_init(void); ...@@ -28,7 +28,7 @@ extern rt_err_t eth_system_device_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
#include <finsh.h> #include <finsh.h>
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
/** /**
...@@ -51,7 +51,7 @@ extern int rt_application_init(void); ...@@ -51,7 +51,7 @@ extern int rt_application_init(void);
extern rt_err_t rt_hw_serial_init(void); extern rt_err_t rt_hw_serial_init(void);
#endif #endif
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
void led_flash() void led_flash()
......
...@@ -49,7 +49,7 @@ extern unsigned char __bss_end; ...@@ -49,7 +49,7 @@ extern unsigned char __bss_end;
extern void rt_hw_board_init(void); extern void rt_hw_board_init(void);
extern void rt_application_init(void); extern void rt_application_init(void);
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void sd_init(void); extern void sd_init(void);
void rtthread_startup() void rtthread_startup()
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char *device); extern void finsh_set_device(const char *device);
#endif #endif
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char* device); extern void finsh_set_device(const char* device);
#endif #endif
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
#include <finsh.h> #include <finsh.h>
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
extern int rt_application_init(void); extern int rt_application_init(void);
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
extern int rt_application_init(void); extern int rt_application_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char *device); extern void finsh_set_device(const char *device);
#endif #endif
......
...@@ -35,7 +35,7 @@ extern int __bss_end; ...@@ -35,7 +35,7 @@ extern int __bss_end;
#endif #endif
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
#endif #endif
extern int rt_application_init(void); extern int rt_application_init(void);
......
...@@ -27,7 +27,7 @@ extern int rt_application_init(void); ...@@ -27,7 +27,7 @@ extern int rt_application_init(void);
//extern void rt_thread_idle_init(void); //extern void rt_thread_idle_init(void);
#ifdef RT_USING_FINSH #ifdef RT_USING_FINSH
extern void finsh_system_init(void); extern int finsh_system_init(void);
extern void finsh_set_device(const char *device); extern void finsh_set_device(const char *device);
#endif #endif
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
static rt_int16_t rt_scheduler_lock_nest; static rt_int16_t rt_scheduler_lock_nest;
extern volatile rt_uint8_t rt_interrupt_nest; extern volatile rt_uint8_t rt_interrupt_nest;
extern int __rt_ffs(int value); extern rt_ubase_t __rt_ffs(rt_ubase_t value);
rt_list_t rt_thread_priority_table[RT_THREAD_PRIORITY_MAX]; rt_list_t rt_thread_priority_table[RT_THREAD_PRIORITY_MAX];
struct rt_thread *rt_current_thread; struct rt_thread *rt_current_thread;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册