Skip to content

Commit c7903a3

Browse files
Merge pull request #88 from FrameworkComputer/camera-firmware
camera: Print firmware version of camera
2 parents 476a634 + a83ec0c commit c7903a3

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

framework_lib/src/camera.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
pub const FRAMEWORK_VID: u16 = 0x32AC;
2+
pub const FRAMEWORK13_16_2ND_GEN_PID: u16 = 0x001C;
3+
pub const FRAMEWORK12_PID: u16 = 0x001D;
4+
5+
/// Get and print the firmware version of the camera
6+
pub fn check_camera_version() {
7+
for dev in rusb::devices().unwrap().iter() {
8+
let dev_descriptor = dev.device_descriptor().unwrap();
9+
if dev_descriptor.vendor_id() != FRAMEWORK_VID
10+
|| (dev_descriptor.product_id() != FRAMEWORK13_16_2ND_GEN_PID
11+
&& dev_descriptor.product_id() != FRAMEWORK12_PID)
12+
{
13+
debug!(
14+
"Skipping {:04X}:{:04X}",
15+
dev_descriptor.vendor_id(),
16+
dev_descriptor.product_id()
17+
);
18+
continue;
19+
}
20+
let handle = dev.open().unwrap();
21+
22+
let dev_descriptor = dev.device_descriptor().unwrap();
23+
let i_product = dev_descriptor
24+
.product_string_index()
25+
.and_then(|x| handle.read_string_descriptor_ascii(x).ok());
26+
println!("{}", i_product.unwrap_or_default());
27+
println!(" Firmware Version: {}", dev_descriptor.device_version());
28+
}
29+
}

framework_lib/src/commandline/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ use std::io::prelude::*;
2323
#[cfg(feature = "rusb")]
2424
use crate::audio_card::check_synaptics_fw_version;
2525
use crate::built_info;
26+
#[cfg(feature = "rusb")]
27+
use crate::camera::check_camera_version;
2628
use crate::capsule;
2729
use crate::capsule_content::{
2830
find_bios_version, find_ec_in_bios_cap, find_pd_in_bios_cap, find_retimer_version,
@@ -470,6 +472,8 @@ fn print_versions(ec: &CrosEc) {
470472
println!(" Unknown");
471473
}
472474
}
475+
#[cfg(feature = "rusb")]
476+
check_camera_version();
473477
}
474478

475479
fn print_esrt() {

framework_lib/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ extern crate log;
1414

1515
#[cfg(feature = "rusb")]
1616
pub mod audio_card;
17+
#[cfg(feature = "rusb")]
18+
pub mod camera;
1719

1820
#[cfg(feature = "uefi")]
1921
#[macro_use]

0 commit comments

Comments
 (0)