Update backend features to be more clear

This commit is contained in:
Emil Fresk 2023-02-20 20:56:18 +01:00 committed by Henrik Tjäder
parent 9552790dcc
commit 4442c46926
6 changed files with 31 additions and 32 deletions

View file

@ -55,10 +55,10 @@ impl Backends {
fn to_rtic_feature(&self) -> &str {
match self {
Backends::Thumbv6 => "thumbv6",
Backends::Thumbv7 => "thumbv7",
Backends::Thumbv8Base => "thumbv8_base",
Backends::Thumbv8Main => "thumbv8_main",
Backends::Thumbv6 => "thumbv6-backend",
Backends::Thumbv7 => "thumbv7-backend",
Backends::Thumbv8Base => "thumbv8base-backend",
Backends::Thumbv8Main => "thumbv8main-backend",
}
}
}