12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /*
- * File : app.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2013, 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://openlab.rt-thread.com/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2013-05-24 Grissiom first version
- */
- #include <rtthread.h>
- #include "system.h"
- #include "het.h"
- int ulRegTest1Counter;
- int ulRegTest2Counter;
- void vPortTaskUsesFPU()
- {
- }
- static rt_uint8_t user_thread_stack[512];
- static struct rt_thread user_thread;
- static void user_thread_entry(void *p)
- {
- gioSetDirection(hetPORT1, 0xFFFFFFFF);
- for(;;)
- {
- gioSetBit(hetPORT1, 17, gioGetBit(hetPORT1, 17) ^ 1);
- /* Taggle HET[1] with timer tick */
- /*sciSendByte(scilinREG, 'b');*/
- rt_thread_delay(100);
- /*sciSendByte(scilinREG, 'a');*/
- }
- }
- static rt_uint8_t test_thread_stack[512];
- static struct rt_thread test_thread;
- void vRegTestTask1(void*);
- int rt_application_init()
- {
- rt_thread_init(&user_thread, "user1", user_thread_entry, RT_NULL,
- user_thread_stack, sizeof(user_thread_stack), 8, 20);
- rt_thread_startup(&user_thread);
- rt_thread_init(&test_thread, "test1", vRegTestTask1, RT_NULL,
- test_thread_stack, sizeof(test_thread_stack), 8, 20);
- rt_thread_startup(&test_thread);
- return 0;
- }
|