Skip to content

Commit

Permalink
Remove yml exception for S3 (#3039)
Browse files Browse the repository at this point in the history
* Remove yml exception for S3

* Fix warnings
  • Loading branch information
bugadani authored Jan 27, 2025
1 parent b0060a1 commit 5139ff1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/hil.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,7 @@ jobs:
ldproxy: false
version: 1.84.0.0

# remove once we have a proper solution for target specific configs
- name: Build tests ESP32S3
if: ${{ matrix.target.soc == 'esp32s3'}}
run: ESP_HAL_CONFIG_PSRAM_MODE="octal" cargo xtask build-tests ${{ matrix.target.soc }}

- name: Build tests
if: ${{ matrix.target.soc != 'esp32s3'}}
run: cargo xtask build-tests ${{ matrix.target.soc }}

- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion esp-hal-embassy/src/executor/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use core::marker::PhantomData;

use embassy_executor::Spawner;
#[cfg(multi_core)]
#[cfg(all(low_power_wait, multi_core))]
use esp_hal::interrupt::software::SoftwareInterrupt;
use esp_hal::{interrupt::Priority, Cpu};
#[cfg(low_power_wait)]
Expand Down
1 change: 0 additions & 1 deletion hil-test/tests/gpio_custom_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use embassy_time::{Duration, Timer};
use esp_hal::{
gpio::{AnyPin, Flex, Input, InputConfig, Io, Level, Output, OutputConfig, Pull},
handler,
interrupt::InterruptConfigurable,
timer::timg::TimerGroup,
};
use hil_test as _;
Expand Down
2 changes: 2 additions & 0 deletions hil-test/tests/spi_half_duplex_write_psram.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//% CHIPS: esp32s3
//% FEATURES: unstable psram
// The dev kit in the HIL-tester has octal PSRAM.
//% ENV: ESP_HAL_CONFIG_PSRAM_MODE=octal

#![no_std]
#![no_main]
Expand Down

0 comments on commit 5139ff1

Please sign in to comment.