-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtos_start.c
179 lines (150 loc) · 5.21 KB
/
rtos_start.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/****************************************************************************
* Afan SAME70 Thread-X rtos_start.c
* Author : Afan Vibrant (AfanVibrant@outlook.com)
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#include <atmel_start.h>
#include <peripheral_clk_config.h>
#include "rtos_config.h"
#include "rtos.h"
#include "rtos_start.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Data
****************************************************************************/
/****************************************************************************
* Private Data
****************************************************************************/
static CHAR *RTOSPoolAddr;
static TX_BYTE_POOL RTOSMboxMSGPool;
static const char *led_task_name = "led task";
static TX_THREAD led_thread_id;
/****************************************************************************
* Public Functions Prototypes
****************************************************************************/
/****************************************************************************
* Private Functions Prototypes
****************************************************************************/
static void led_thread_entry(ULONG parameter);
static void user_application_run(void);
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: led_thread_entry
*
* Description:
* Task for LED.
*
* Input Parameters:
* NONE.
*
* Returned Value:
* None.
*
****************************************************************************/
static void led_thread_entry(ULONG parameter)
{
(void)parameter;
while (1)
{
printf("led task run\r\n");
rtos_task_delay_ms(500);
}
}
/****************************************************************************
* Name: user_application_run
*
* Description:
* Task for user application.
*
* Input Parameters:
* NONE.
*
* Returned Value:
* None.
*
****************************************************************************/
static void user_application_run(void)
{
UINT ret;
ret = tx_byte_allocate(&RTOSMboxMSGPool,
(VOID **) &RTOSPoolAddr,
(ULONG)LEDRUN_THREAD_STKSZ, TX_NO_WAIT);
if (ret != TX_SUCCESS) {
printf("%s task stack allocate fail\r\n", led_task_name);
goto outs;
}
ret = tx_thread_create(&led_thread_id, (CHAR *)led_task_name,
led_thread_entry, (ULONG)NULL,
RTOSPoolAddr, (ULONG)LEDRUN_THREAD_STKSZ,
(rtos_thread_t)LEDRUN_THREAD_PRIO,
(rtos_thread_t)LEDRUN_THREAD_PRIO,
TX_NO_TIME_SLICE, TX_AUTO_START);
if(TX_SUCCESS == ret) {
}
else {
printf("%s task with priority-%d create fail\r\n", led_task_name, LEDRUN_THREAD_PRIO);
}
outs:
return;
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: tx_application_define
*
* Description:
* Define what the initial system looks like.
*
* Input Parameters:
* first_unused_memory:
*
* Returned Value:
* None.
*
****************************************************************************/
void tx_application_define(void *first_unused_memory)
{
/* Create a byte memory pool from which to allocate the thread stacks. */
tx_byte_pool_create(&RTOSMboxMSGPool, "RTOS Pool 0",
first_unused_memory,
TOTAL_THREAD_STKSZ + TOTAL_THREAD_MSGSZ);
user_application_run();
}
/****************************************************************************
* Name: ThreadX_V610X_start
*
* Description:
* Run Thread-X kernel.
*
* Input Parameters:
* first_unused_memory:
*
* Returned Value:
* None.
*
****************************************************************************/
void ThreadX_V610X_start(void)
{
/* Enter the ThreadX kernel. */
tx_kernel_enter();
}