-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdepx.conf
106 lines (87 loc) · 1.59 KB
/
mdepx.conf
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
modules mdepx;
modules src;
link ldscript obj/raspberrypi-pico.elf;
set-build-flags -mthumb -mcpu=cortex-m0plus -fno-pic
-O -nostdlib -fno-builtin-printf
-pipe -g -nostdinc -fno-omit-frame-pointer
-fno-optimize-sibling-calls -ffreestanding -fwrapv
-fdiagnostics-show-option -fms-extensions
-Wall -Wredundant-decls -Wnested-externs
-Wstrict-prototypes -Wmissing-prototypes
-Wpointer-arith -Winline -Wcast-qual
-Wundef -Wno-pointer-sign -Wno-format
-Wmissing-include-dirs -Wno-unknown-pragmas -Werror;
src {
append-search-path
.
../mdepx/arch
../mdepx/include
../mdepx/lib
../mdepx;
append-search-path ../mdepx/lib/cyw43-driver/src;
objects board.o
bs2_default_padded_checksummed.o
cyw43.o
cyw43_spi.o
main.o;
};
mdepx {
modules app;
modules arch;
modules dev;
modules kernel;
modules lib;
app {
modules callout_test;
};
arch {
modules arm;
arm {
intr_stack_size 16384;
thumb_cm0;
modules raspberrypi;
raspberrypi {
options rp2040;
};
};
};
dev {
modules intc uart gpio;
};
kernel {
modules cpu;
modules thread;
modules callout;
modules systm;
modules sched;
modules malloc;
thread {
options dynamic_alloc;
stack_size 16384;
};
callout {
options usec_to_ticks_1mhz;
};
malloc {
options fl fl_wrapper;
};
systm {
options console;
};
};
lib {
modules libaeabi;
modules libc;
modules cyw43-driver;
libc {
objects gen/assert.o;
};
cyw43-driver {
append-search-path src .;
append-search-path ../../../src;
};
libc {
modules stdio string stdlib;
};
};
};