aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-mspm0/build.rs')
-rw-r--r--embassy-mspm0/build.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/embassy-mspm0/build.rs b/embassy-mspm0/build.rs
index 409ce0621..094769992 100644
--- a/embassy-mspm0/build.rs
+++ b/embassy-mspm0/build.rs
@@ -84,6 +84,10 @@ fn get_chip_cfgs(chip_name: &str) -> Vec<String> {
84 cfgs.push("mspm0g150x".to_string()); 84 cfgs.push("mspm0g150x".to_string());
85 } 85 }
86 86
87 if chip_name.starts_with("mspm0g151") {
88 cfgs.push("mspm0g151x".to_string());
89 }
90
87 if chip_name.starts_with("mspm0g310") { 91 if chip_name.starts_with("mspm0g310") {
88 cfgs.push("mspm0g310x".to_string()); 92 cfgs.push("mspm0g310x".to_string());
89 } 93 }