forked from garyexplains/piccolo_os_v1.1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
piccolo_os_demo.c
97 lines (79 loc) · 1.79 KB
/
piccolo_os_demo.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
/*
* Copyright (C) 2021-2022 Gary Sims
* Copyright (C) 2022 Keith Standiford
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "pico/stdlib.h"
#include <stdio.h>
#include <stdlib.h>
#include "piccolo_os.h"
const uint LED_PIN = 25;
const uint LED2_PIN = 14;
void task1_func(void) {
gpio_init(LED_PIN);
gpio_set_dir(LED_PIN, GPIO_OUT);
while (true) {
gpio_put(LED_PIN, 1);
piccolo_sleep_ms(1000);
gpio_put(LED_PIN, 0);
piccolo_sleep_ms(1000);
}
}
int is_prime(unsigned int n) {
unsigned int p;
if (!(n & 1) || n < 2)
return n == 2;
/* comparing p*p <= n can overflow */
for (p = 3; p <= n / p; p += 2)
if (!(n % p))
return 0;
return 1;
}
void task2_func(void) {
int p;
while (1) {
p = to_ms_since_boot(get_absolute_time());
if (is_prime(p) == 1) {
printf("%d is prime!\n", p);
}
}
}
int task3_cmpfunc(const void *a, const void *b) {
return (*(int *)a - *(int *)b);
}
/*
* Make sure that none of the artificial workload
* is optimized away from the compiler
*/
#pragma GCC push_options
#pragma GCC optimize("O0")
void task3_func(void) {
gpio_init(LED2_PIN);
gpio_set_dir(LED2_PIN, GPIO_OUT);
while (true) {
gpio_put(LED2_PIN, 1);
for (int x = 0; x < 20; x++) {
int *values = (int *)malloc(1024);
int j = 1024;
for (int i = 0; i < 1024; i++) {
values[i] = j--;
}
qsort(values, 1024, sizeof(int), task3_cmpfunc);
free(values);
}
gpio_put(LED2_PIN, 0);
piccolo_sleep_ms(30);
}
}
#pragma GCC pop_options
int main() {
piccolo_init();
printf("PICCOLO OS Demo Starting...\n");
piccolo_create_task(&task1_func);
piccolo_create_task(&task2_func);
piccolo_create_task(&task3_func);
piccolo_start();
return 0; /* Never gonna happen */
}