自己造操作系统 (2) – zOS-0.2 版本发布!

自己造操作系统系列之 0.2 版

新增了信号量功能, 实现进程间同步.

zOS 暂时分成两条线, 一条是上文说的那些功能 (类似于宏内核, 加载执行)

另一条是今天发布的 zOS-mini, 只包含调度, 同步设施. 而且只需要三个文件

还是只能在 stm32 上运行

链接: https://lengzzz.com/zOS/zOS_mini-0.2.zip

下面是一个测试用例
四个线程, 以不同的时间闪烁 led, 线程间通过 sem 信号量同步:

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
#include <stm32f10x.h>
#include <stm32f10x_rcc.h>
#include <stm32f10x_gpio.h>
#include "zOS.h"

void init();

#define BitP(addr, n) (*(volatile unsigned int *)(0x42000000 + (((unsigned)(addr) - 0x40000000) * 8 + (n)) * 4))
#define BitM(addr, n) (*(volatile unsigned int *)(0x22000000 + (((unsigned)(addr) - 0x20000000) * 8 + (n)) * 4))

#define STACK_SIZE 32

semaphore sem;

uint32_t stack0[STACK_SIZE];
void process0()
{
while (1)
{
BitP(&GPIOA->ODR, 4) = 1;
delay_ms(1000);
BitP(&GPIOA->ODR, 4) = 0;
delay_ms(1000);
}
}

uint32_t stack1[STACK_SIZE];
void process1()
{
while (1/*SYS_TICK < 10 * 1000 * 1000*/)
{
down_sem(&sem);
BitP(&GPIOA->ODR, 0) = 1;
delay_ms(125);
BitP(&GPIOA->ODR, 0) = 0;
delay_ms(125);
}
//create_process(&stack0[STACK_SIZE], process0);
//kill_process();
}
uint32_t stack2[STACK_SIZE];
void process2()
{
while (1)
{
down_sem(&sem);
BitP(&GPIOA->ODR, 1) = 1;
delay_ms(250);
BitP(&GPIOA->ODR, 1) = 0;
delay_ms(250);
}
}
uint32_t stack3[STACK_SIZE];
void process3()
{
while (1)
{
down_sem(&sem);
BitP(&GPIOA->ODR, 2) = 1;
delay_ms(500);
BitP(&GPIOA->ODR, 2) = 0;
delay_ms(500);
}
}
uint32_t stack4[STACK_SIZE];
void process4()
{
while (1)
{
up_sem(&sem);
up_sem(&sem);
BitP(&GPIOA->ODR, 3) = 1;
delay_ms(1000);
BitP(&GPIOA->ODR, 3) = 0;
delay_ms(1000);
}
}

int main(void)
{
init();
init_zos();

init_sem(&sem, 0);

create_process(&stack1[STACK_SIZE], process1);
create_process(&stack2[STACK_SIZE], process2);
create_process(&stack3[STACK_SIZE], process3);
create_process(&stack4[STACK_SIZE], process4);

schedule();

while (1);
}

void init()
{
GPIO_InitTypeDef gpio;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);

gpio.GPIO_Pin =
GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4;
gpio.GPIO_Mode = GPIO_Mode_Out_PP;
gpio.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &gpio);
}

Proudly powered by Hexo and Theme by Hacker
© 2021 wastecat