【更新】STM32F4 demo 的 IAR 工程。

Signed-off-by: armink <armink.ztl@gmail.com>
pull/42/head
armink 7 years ago
parent 7abf3d3500
commit fcce835e38

@ -32,11 +32,11 @@
</option>
<option>
<name>Input description</name>
<state>Automatic choice of formatter.</state>
<state>Automatic choice of formatter, without multibyte support.</state>
</option>
<option>
<name>Output description</name>
<state>Automatic choice of formatter.</state>
<state>Automatic choice of formatter, without multibyte support.</state>
</option>
<option>
<name>GOutputBinary</name>

File diff suppressed because it is too large Load Diff

@ -81,8 +81,8 @@ void sys_init_thread(void* parameter){
if (easyflash_init() == EF_NO_ERR) {
/* initialize OK and switch to running status */
set_system_status(SYSTEM_STATUS_RUN);
/* test Env demo */
test_env();
/* test Env demo */
test_env();
} else {
/* initialize fail and switch to fault status */
set_system_status(SYSTEM_STATUS_FAULT);
@ -104,7 +104,7 @@ int rt_application_init(void)
rt_thread_startup(&thread_sys_monitor);
init_thread = rt_thread_create("sys init", sys_init_thread,
NULL, 512, 10, 10);
NULL, 1024, 10, 10);
if (init_thread != NULL) {
rt_thread_startup(init_thread);
}

Loading…
Cancel
Save