Skip to content

Commit

Permalink
Fix building for ESP32C2. (#311)
Browse files Browse the repository at this point in the history
Fixes #282.
  • Loading branch information
dacut authored Sep 26, 2023
1 parent 8508fd2 commit e6603eb
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 9 deletions.
12 changes: 10 additions & 2 deletions src/adc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ use crate::peripheral::{Peripheral, PeripheralRef};
#[cfg(not(feature = "riscv-ulp-hal"))]
pub type AdcConfig = config::Config;

#[cfg(all(not(feature = "riscv-ulp-hal"), not(esp_idf_version_major = "4")))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
not(esp_idf_version_major = "4"),
not(esp32c2)
))]
pub use continuous::{
config as cont_config, config::Config as AdcContConfig, AdcChannels, AdcChannelsArray,
AdcDriver as AdcContDriver, AdcMeasurement, Atten11dB, Atten2p5dB, Atten6dB, AttenNone,
Expand Down Expand Up @@ -773,7 +777,11 @@ pub mod oneshot {
unsafe impl<'d, ADC: Adc> Sync for AdcDriver<'d, ADC> {}
}

#[cfg(all(not(feature = "riscv-ulp-hal"), not(esp_idf_version_major = "4")))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
not(esp_idf_version_major = "4"),
not(esp32c2)
))]
pub mod continuous {
use core::ffi::c_void;
use core::fmt::{self, Debug, Display};
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ pub mod hall;
pub mod i2c;
#[cfg(all(
not(feature = "riscv-ulp-hal"),
not(esp32c2),
esp_idf_soc_i2s_supported,
esp_idf_comp_driver_enabled
))]
#[cfg_attr(feature = "nightly", doc(cfg(not(esp32c2))))]
#[cfg_attr(feature = "nightly", doc(cfg(esp_idf_soc_adc_supported)))]
pub mod i2s;
#[cfg(not(feature = "riscv-ulp-hal"))]
pub mod interrupt;
Expand Down
32 changes: 27 additions & 5 deletions src/peripherals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ use crate::can;
use crate::gpio;
#[cfg(not(feature = "riscv-ulp-hal"))]
use crate::i2c;
#[cfg(not(feature = "riscv-ulp-hal"))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
esp_idf_soc_i2s_supported,
esp_idf_comp_driver_enabled
))]
use crate::i2s;
#[cfg(not(feature = "riscv-ulp-hal"))]
use crate::ledc;
Expand Down Expand Up @@ -55,9 +59,18 @@ pub struct Peripherals {
pub i2c0: i2c::I2C0,
#[cfg(all(not(any(esp32c3, esp32c2, esp32c6)), not(feature = "riscv-ulp-hal")))]
pub i2c1: i2c::I2C1,
#[cfg(not(feature = "riscv-ulp-hal"))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
esp_idf_soc_i2s_supported,
esp_idf_comp_driver_enabled
))]
pub i2s0: i2s::I2S0,
#[cfg(all(any(esp32, esp32s3), not(feature = "riscv-ulp-hal")))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
esp_idf_soc_i2s_supported,
esp_idf_comp_driver_enabled,
any(esp32, esp32s3)
))]
pub i2s1: i2s::I2S1,
#[cfg(not(feature = "riscv-ulp-hal"))]
pub spi1: spi::SPI1,
Expand Down Expand Up @@ -198,9 +211,18 @@ impl Peripherals {
i2c0: i2c::I2C0::new(),
#[cfg(all(not(any(esp32c3, esp32c2, esp32c6)), not(feature = "riscv-ulp-hal")))]
i2c1: i2c::I2C1::new(),
#[cfg(not(feature = "riscv-ulp-hal"))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
esp_idf_soc_i2s_supported,
esp_idf_comp_driver_enabled
))]
i2s0: i2s::I2S0::new(),
#[cfg(all(any(esp32, esp32s3), not(feature = "riscv-ulp-hal")))]
#[cfg(all(
not(feature = "riscv-ulp-hal"),
esp_idf_soc_i2s_supported,
esp_idf_comp_driver_enabled,
any(esp32, esp32s3)
))]
i2s1: i2s::I2S1::new(),
#[cfg(not(feature = "riscv-ulp-hal"))]
spi1: spi::SPI1::new(),
Expand Down

0 comments on commit e6603eb

Please sign in to comment.