diff --git a/README.md b/README.md index 6f9482d..7f786ca 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ neuromorphic_drivers is a library to interact with USB Neuromorphic devices. The # Supported devices and features -| Name | Type | Resolution | Data types | Mask | Synchronize | Rate limiter | -| ----------------- | ------ | ---------- | ------------ | ---- | ----------- | ------------ | -| Prophesee EVK4 | Camera | 1280 × 720 | DVS, trigger | ✓ | ✓ | ✓ | -| Prophesee EVK3 HD | Camera | 1280 × 720 | DVS, trigger | ✓ | - | ✓ | +| Name | Type | Resolution | Data types | Mask | Synchronize | Rate limiter | Temperature | Illuminance | +| ----------------- | ------ | ---------- | ------------ | ---- | ----------- | ------------ | ----------- | ----------- | +| Prophesee EVK4 | Camera | 1280 × 720 | DVS, trigger | ✓ | ✓ | ✓ | ✓ | ✓ | +| Prophesee EVK3 HD | Camera | 1280 × 720 | DVS, trigger | ✓ | - | ✓ | - | - | This table lists fratures supported by this library. Some devices support unlisted features or features marked as "no" that have yet to be added to neuromorphic_drivers. diff --git a/python/build.rs b/python/build.rs index 4939172..4ac7bb0 100644 --- a/python/build.rs +++ b/python/build.rs @@ -750,15 +750,6 @@ macro_rules! generate { iter_data_right, iter_data_right_suffix, ).unwrap(); - if stringify!($module) == "prophesee_evk4" { - writeln!( - writer, - concat!( - " def illuminance(self) -> int:\n", - " ...", - ) - ).unwrap(); - } } } $(