Skip to content

Commit

Permalink
fix: s/expressif/espressif/g (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 authored Jun 21, 2024
2 parents 4120fdf + 2bb149b commit 5b49d11
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: "limit build unless nightly build"
if: github.event_name != 'schedule'
run: |
echo "LAZE_BUILDERS=ai-c3,expressif-esp32-c6-devkitc-1,microbit-v2,nrf52840dk,nrf5340dk,rpi-pico,rpi-pico-w" >> "$GITHUB_ENV"
echo "LAZE_BUILDERS=ai-c3,espressif-esp32-c6-devkitc-1,microbit-v2,nrf52840dk,nrf5340dk,rpi-pico,rpi-pico-w" >> "$GITHUB_ENV"
- name: "riot-rs compilation test"
if: steps.result-cache.outputs.cache-hit != 'true'
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion laze-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ builders:
- name: ai-c3
parent: esp32c3

- name: expressif-esp32-c6-devkitc-1
- name: espressif-esp32-c6-devkitc-1
parent: esp32c6

- name: nrf5340dk
Expand Down
2 changes: 1 addition & 1 deletion src/riot-rs-boards/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ linkme.workspace = true
riot-rs-rt = { path = "../riot-rs-rt" }

ai-c3 = { optional = true, path = "ai-c3" }
expressif-esp32-c6-devkitc-1 = { optional = true, path = "expressif-esp32-c6-devkitc-1" }
espressif-esp32-c6-devkitc-1 = { optional = true, path = "espressif-esp32-c6-devkitc-1" }
dwm1001 = { optional = true, path = "dwm1001" }
microbit = { optional = true, path = "microbit" }
microbit-v2 = { optional = true, path = "microbit-v2" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "expressif-esp32-c6-devkitc-1"
name = "espressif-esp32-c6-devkitc-1"
version = "0.1.0"
edition = "2021"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
use riot_rs_debug::println;

pub fn init() {
println!("expressif-esp32-c6-devkitc-1::init()");
println!("espressif-esp32-c6-devkitc-1::init()");
}
4 changes: 2 additions & 2 deletions src/riot-rs-boards/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use cfg_if::cfg_if;
cfg_if! {
if #[cfg(feature = "ai-c3")] {
pub use ai_c3 as board;
} else if #[cfg(feature = "expressif-esp32-c6-devkitc-1")] {
pub use expressif_esp32_c6_devkitc_1 as board;
} else if #[cfg(feature = "espressif-esp32-c6-devkitc-1")] {
pub use espressif_esp32_c6_devkitc_1 as board;
} else if #[cfg(feature = "nrf52dk")] {
pub use nrf52dk as board;
} else if #[cfg(feature = "dwm1001")] {
Expand Down

0 comments on commit 5b49d11

Please sign in to comment.