2013-05-24 10:04:51 +08:00
|
|
|
/*
|
|
|
|
* 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"
|
|
|
|
|
2013-05-26 21:16:14 +08:00
|
|
|
int ulRegTest1Counter;
|
|
|
|
int ulRegTest2Counter;
|
|
|
|
|
|
|
|
void vPortTaskUsesFPU()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-24 10:04:51 +08:00
|
|
|
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');*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-26 21:16:14 +08:00
|
|
|
static rt_uint8_t test_thread_stack[512];
|
|
|
|
static struct rt_thread test_thread;
|
|
|
|
void vRegTestTask1(void*);
|
|
|
|
|
2013-05-26 22:14:24 +08:00
|
|
|
static rt_uint8_t test_thread_stack2[512];
|
|
|
|
static struct rt_thread test_thread2;
|
|
|
|
void vRegTestTask2(void*);
|
|
|
|
|
2013-05-24 10:04:51 +08:00
|
|
|
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);
|
2013-05-26 21:16:14 +08:00
|
|
|
|
|
|
|
rt_thread_init(&test_thread, "test1", vRegTestTask1, RT_NULL,
|
|
|
|
test_thread_stack, sizeof(test_thread_stack), 8, 20);
|
|
|
|
rt_thread_startup(&test_thread);
|
|
|
|
|
2013-05-26 22:14:24 +08:00
|
|
|
rt_thread_init(&test_thread2, "test2", vRegTestTask2, RT_NULL,
|
|
|
|
test_thread_stack2, sizeof(test_thread_stack2), 9, 20);
|
|
|
|
rt_thread_startup(&test_thread2);
|
|
|
|
|
2013-05-24 10:04:51 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|