Skip to content

Commit

Permalink
feat: enable S3
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Mar 20, 2024
1 parent b06cd3b commit f8ca887
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions hil-test/tests/aes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ impl Context<'_> {
}
}

#[cfg(not(any(feature = "esp32c3", feature = "esp32c6", feature = "esp32h2")))]
#[cfg(not(any(
feature = "esp32c3",
feature = "esp32c6",
feature = "esp32h2",
feature = "esp32s3"
)))]
mod not_test {
#[esp_hal::entry]
fn main() -> ! {
Expand All @@ -35,7 +40,12 @@ mod not_test {
}

#[cfg(test)]
#[cfg(any(feature = "esp32c3", feature = "esp32c6", feature = "esp32h2"))]
#[cfg(any(
feature = "esp32c3",
feature = "esp32c6",
feature = "esp32h2",
feature = "esp32s3"
))]
#[embedded_test::tests]
mod tests {
use defmt::assert_eq;
Expand Down

0 comments on commit f8ca887

Please sign in to comment.