forked from stm32-rs/stm32f3xx-hal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.rs
208 lines (194 loc) · 6.12 KB
/
build.rs
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
use std::collections::hash_set::HashSet;
use std::env;
use std::fs::File;
use std::io::prelude::*;
use std::path::PathBuf;
// TODO(Sh3Rm4n - 2021-04-28):
// Remove when [feature="slice_group_by"] is stable.
// See with https://github.com/rust-lang/rust/issues/80552.
use slice_group_by::GroupBy;
const DEVICE_VARIANTS: [&str; 25] = [
"stm32f301x6",
"stm32f301x8",
"stm32f318x8",
"stm32f302x6",
"stm32f302x8",
"stm32f302xb",
"stm32f302xc",
"stm32f302xd",
"stm32f302xe",
"stm32f303x6",
"stm32f303x8",
"stm32f303xb",
"stm32f303xc",
"stm32f303xd",
"stm32f303xe",
"stm32f328x8",
"stm32f358xc",
"stm32f398xe",
"stm32f373x8",
"stm32f373xb",
"stm32f373xc",
"stm32f378xc",
"stm32f334x4",
"stm32f334x6",
"stm32f334x8",
];
fn main() {
check_device_feature();
if cfg!(feature = "ld") {
gen_memory_x();
}
println!("cargo:rerun-if-changed=build.rs");
}
/// Check device feature selection
fn check_device_feature() {
// Check if the device is deprecated
if !cfg!(feature = "device-selected") && cfg!(feature = "direct-call-deprecated") {
eprintln!(
"The (device-)feature you selected is deprecated, because it was split up into sub-devices.\n\
\n\
Example: The STM32F3Discovery board has a STM32F303VCT6 chip.\n\
You probably used to use `stm32f303` but now functionalities for the sub-device were added.\n\
In this case replace it with `stm32f303xc` to make your code build again.\n\
\n\
For more information, see \
\x1b]8;;https://github.com/stm32-rs/stm32f3xx-hal#selecting-the-right-chip\x1b\\README \
-> Selecting the right chip\x1b]8;;\x1b\\."
);
std::process::exit(1);
}
let device_variants: HashSet<String> = DEVICE_VARIANTS.iter().map(|s| s.to_string()).collect();
// get all selected features via env variables
let selected_features: HashSet<String> = env::vars()
.filter_map(|(key, _)| {
key.split("CARGO_FEATURE_")
.nth(1)
.map(|s| s.to_owned().to_ascii_lowercase())
})
.collect();
// check if exactly one device was selected
if device_variants.intersection(&selected_features).count() != 1 {
eprintln!(
"This crate requires you to specify your target chip as a feature.\n\
\n\
Please select **one** of the following (`x` denotes any character in [a-z]):\n"
);
// group device variants by type
let mut device_variants: Vec<String> = device_variants.into_iter().collect();
device_variants.sort_unstable();
let device_variants = device_variants.linear_group_by(|a, b| a[..9] == b[..9]);
// pretty print all avaliable devices
for line in device_variants {
for device in line {
eprint!("{} ", device);
}
eprintln!();
}
eprintln!(
"\nExample: The STM32F3Discovery board has a STM32F303VCT6 chip.\n\
So you need to specify stm32f303xc in your Cargo.toml (note that VC → xc).\n\
\n\
For more information, see \
\x1b]8;;https://github.com/stm32-rs/stm32f3xx-hal#selecting-the-right-chip\x1b\\README \
-> Selecting the right chip\x1b]8;;\x1b\\."
);
std::process::exit(1);
}
}
/// Generate `memory.x` for selected device
///
/// Available RAM/CCMRAM/FLASH value is extracted from RM0313/RM0316/RM0364/RM0365/RM0366
fn gen_memory_x() {
enum Mem {
_4,
_6,
_8,
B,
C,
D,
E,
}
let mem = if cfg!(feature = "mem-4") {
Mem::_4
} else if cfg!(feature = "mem-6") {
Mem::_6
} else if cfg!(feature = "mem-8") {
Mem::_8
} else if cfg!(feature = "mem-b") {
Mem::B
} else if cfg!(feature = "mem-c") {
Mem::C
} else if cfg!(feature = "mem-d") {
Mem::D
} else if cfg!(feature = "mem-e") {
Mem::E
} else {
eprintln!(
"Memory size unknown.
This may be due to incorrect feature configuration in Cargo.toml or stm32f3xx-hal's internal issue."
);
std::process::exit(1);
};
let flash = match mem {
Mem::_4 => 16,
Mem::_6 => 32,
Mem::_8 => 64,
Mem::B => 128,
Mem::C => 256,
Mem::D => 384,
Mem::E => 512,
};
let ccmram = if cfg!(feature = "svd-f303") || cfg!(feature = "svd-f3x4") {
match mem {
Mem::_4 | Mem::_6 | Mem::_8 => 4,
Mem::B | Mem::C => 8,
Mem::D | Mem::E => 16,
}
} else {
0
};
let ram = match mem {
Mem::_4 | Mem::_6 | Mem::_8 => 16,
Mem::B if cfg!(feature = "svd-f373") => 24,
Mem::B if cfg!(feature = "svd-f302") => 32,
Mem::C if cfg!(feature = "svd-f373") => 32,
Mem::B if cfg!(feature = "svd-f303") => 40,
Mem::C if cfg!(feature = "svd-f302") => 40,
Mem::C if cfg!(feature = "svd-f303") => 48,
Mem::D | Mem::E if cfg!(feature = "svd-f302") => 64,
Mem::D | Mem::E if cfg!(feature = "svd-f303") => 80,
_ => {
eprintln!(
"Memory size unknown.
This may be due to incorrect feature configuration in Cargo.toml or stm32f3xx-hal's internal issue."
);
std::process::exit(1);
}
} - ccmram;
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
let mut file = File::create(out_dir.join("memory.x")).unwrap();
writeln!(file, "MEMORY {{").unwrap();
writeln!(
file,
" FLASH (rx) : ORIGIN = 0x8000000, LENGTH = {}K",
flash
)
.unwrap();
if ccmram > 0 {
writeln!(
file,
" CCMRAM (rwx) : ORIGIN = 0x10000000, LENGTH = {}K",
ccmram
)
.unwrap();
}
writeln!(
file,
" RAM (rwx) : ORIGIN = 0x20000000, LENGTH = {}K",
ram
)
.unwrap();
writeln!(file, "}}").unwrap();
println!("cargo:rustc-link-search={}", out_dir.display());
}