-
Notifications
You must be signed in to change notification settings - Fork 0
/
artos.c
292 lines (182 loc) · 4.12 KB
/
artos.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#include "stm32f0xx.h"
#include "stdlib.h"
#include "STM_api.h"
#define TASK_LIMIT 3
int TIMESTAMP = 0;
mutex mutex_test;
unsigned char Stacks[TASK_LIMIT][0x200];
char OutputBuffer[256];
int countOutputBuffer = 0;
int blockRead = 0;
int USARTReady = 0;
int CurrentInpudPid = -1;
int countInInputQueue = 0;
int currentPointer = 0;
char InputBuffer[256];
int countCharInBuffer;
//Context
typedef struct context{
unsigned int GPR[13];
void * PC;
void * LR;
void * SP;
unsigned int PSW;
int idTask;
int currentStatus;
} context_t;
context_t ContextARTOS[TASK_LIMIT];
context_t * CurrentContext = NULL;
extern int IncludeTask(void * Task);
void USARTSend();
void USARTInit();
int print(char * output);
int taskCount;
int tnum = 0;
int CriticalProcess;
/**
* Include Task to Schedule
* @param Task
* Return pid
**/
extern int IncludeTask( void * Task ){
if(tnum < 8){
//CurrentContext = (context_t * )malloc(16);
ContextARTOS[taskCount].idTask = taskCount;
ContextARTOS[taskCount].PC = (void *)(((int)(Task)) | (1));
ContextARTOS[taskCount].SP = &Stacks[tnum][0x200 - 4];
ContextARTOS[taskCount].PSW = 0x01000000;
taskCount++;
return 0;
}
else
return -1;
}
int DeleteTask(){
}
extern int getpid(){
return tnum;
}
void ScheduleWorker(){
tnum++;
if(tnum == taskCount){
tnum = 0;
// if(taskCount > 1)
// tnum = 1;
}
}
extern void Delay(int time){
int time1 = TIMESTAMP;
while(TIMESTAMP - time1 < time);
}
extern void CRITICAL_START(){
CriticalProcess = tnum;
}
extern void CRITICAL_END(){
CriticalProcess = -2;
}
void InitRTOS(){
TIMESTAMP = 0;
taskCount = 0;
tnum = 0;
// ContextARTOS = NULL;
// ContextARTOS = malloc(sizeof(context_t));
// ContextARTOS->next = NULL;
CriticalProcess = -2;
SysTick_Config(SystemCoreClock / 1000); //1000
taskCount = 1;
USARTInit();
// IncludeTask(USARTSend);
print("OS Init success\n");
AfterInit();
while(1);
}
void SysTick_Handler()
{
TIMESTAMP++;
if(taskCount <= 0)
return;
SaveContext(&ContextARTOS[tnum]);
if(CriticalProcess == -2){
ScheduleWorker();
}
RestoreContext(&ContextARTOS[tnum]);
__ASM("ISB");
}
void USARTInit(){
//enable A register
RCC->AHBENR = 0 | RCC_AHBENR_GPIOAEN | RCC_AHBENR_GPIOCEN;
RCC->APB2ENR = 0 | RCC_APB2ENR_USART1EN;
GPIOA->MODER &= ~ 0x003c0000;
GPIOA->MODER |= 0x00280000;
GPIOA->AFR[1] = 0x00000110;
GPIOA->AFR[1] = 0x00000110;
USART1->BRR = 8000000/38400; //USART_BRR_DIV_FRACTION;
USART1->CR1 |= USART_CR1_UE;
USART1->CR1 |= USART_CR1_TE;
USART1->CR1 |= USART_CR1_RE;
USART1->CR1 |= USART_CR1_RXNEIE;
NVIC_EnableIRQ(USART1_IRQn);
USARTReady = 1;
countOutputBuffer = 0;
}
extern int print(char * output){
int i = 0;
return 0;
CRITICAL_START();
if(USARTReady == 0)
USARTInit();
blockRead = 1;
while(output[i] != NULL && i + countOutputBuffer < 256){
OutputBuffer[countOutputBuffer + i] = output[i];
i++;
}
countOutputBuffer+=i;
blockRead = 0;
CRITICAL_END();
return 0;
}
/*extern char * read(char * input){
CRITICAL_START();
int myNumberInQueue;
if(CurrentInpudPid != -1){
int myNumberInQueue = countInInputQueue++;
}
CRITICAL_END();
while(currentPointer != myNumberInQueue);
CRITICAL_START();
if(currentPointer == myNumberInQueue){
CurrentInpudPid = getpid();
}
CRITICAL_END();
}*/
void USARTSend(){
int i = 0;
while(1){
while(i < countOutputBuffer && blockRead == 0 && USARTReady == 1){
USART1->TDR = OutputBuffer[i];
while((USART1->ISR & USART_ISR_TXE) == 0);
i++;
if(i >= countOutputBuffer)
countOutputBuffer = 0;
}
if(countOutputBuffer == 256)
countOutputBuffer = 0;
}
}
/*void USART1_IRQHandler(void){
short unsigned int dat = 0;
if((USART1->ISR & USART_ISR_RXNE) == USART_ISR_RXNE && CurrentInpudPid != 0){
USART1->ISR&=~USART_ISR_RXNE;
dat = USART1->RDR;
if(currentPtr < 100){
currentText[currentPtr++] = dat;
}
if(dat == '0'){
USARTSend(currentText);
}
USARTSend(currentText);
}
}*/
int main(){
return 0;
}