Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions framework_lib/src/chromium_ec/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,26 @@ fn init() -> bool {
match platform {
Some(platform @ Platform::IntelGen11)
| Some(platform @ Platform::IntelGen12)
| Some(platform @ Platform::IntelGen13)
| Some(platform @ Platform::Framework13Amd7080)
| Some(platform @ Platform::Framework16Amd7080) => {
| Some(platform @ Platform::IntelGen13) => {
println!("The windows driver is not enabled on {:?}.", platform);
println!("Please stay tuned for future BIOS and driver updates.");
println!();
}
Some(Platform::IntelCoreUltra1) => {
println!("The windows driver has been enabled since BIOS 3.06.");
println!("Please install the latest BIOS and drivers");
println!();
}
Some(Platform::Framework13Amd7080) => {
println!("The windows driver has been enabled since BIOS 3.16.");
println!("Please install the latest BIOS and drivers");
println!();
}
Some(Platform::Framework16Amd7080) => {
println!("The windows driver has been enabled since BIOS 3.06.");
println!("Please install the latest BIOS and drivers");
println!();
}
_ => (),
}

Expand Down
Loading