| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /*
- * File : app.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2011-08-06 Magicoe first release
- *
- */
- /**
- * @addtogroup PK40X256LVQ100
- */
- /*@{*/
- #include <rtthread.h>
- #include "tc_comm.h"
- #include "SLCD_Driver.h"
- /*
- * This is an example for delay thread
- */
- static struct rt_thread thread;
- static char thread_stack[THREAD_STACK_SIZE];
- static void thread_entry(void* parameter)
- {
- rt_tick_t tick;
- rt_uint8_t *dispchar[4] = {"INITED",
- "TICK10",
- "TICK15",
- " EXIT "};
- rt_kprintf("thread inited ok\n");
- SLCD_PrintString(dispchar[0], 0);
- tick = rt_tick_get();
- rt_kprintf("thread tick %d\n", tick);
- rt_kprintf("thread delay 10 tick\n");
-
- rt_thread_delay(1000);
- if (rt_tick_get() - tick > 1000)
- {
- tc_done(TC_STAT_FAILED);
- return;
- }
- SLCD_PrintString(dispchar[1], 0);
- tick = rt_tick_get();
- rt_kprintf("thread delay 15 tick\n");
-
- rt_thread_delay(1500);
- if (rt_tick_get() - tick > 1500)
- {
- tc_done(TC_STAT_FAILED);
- return;
- }
-
- SLCD_PrintString(dispchar[2], 0);
- rt_thread_delay(1000);
- rt_kprintf("thread exit\n");
- SLCD_PrintString(dispchar[3], 0);
- tc_done(TC_STAT_PASSED);
- }
- rt_err_t thread_delay_init()
- {
- rt_err_t result;
- result = rt_thread_init(&thread,
- "test",
- thread_entry, RT_NULL,
- &thread_stack[0], sizeof(thread_stack),
- THREAD_PRIORITY, 10);
- if (result == RT_EOK)
- rt_thread_startup(&thread);
- else
- tc_stat(TC_STAT_END | TC_STAT_FAILED);
- return result;
- }
- int rt_application_init()
- {
- thread_delay_init();
- return 0;
- }
- /*@}*/
|