Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion crates/fbuild-config/src/board/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ pub(super) const EMULATOR_TOOL_NAMES: &[&str] =
&["simavr", "qemu", "renode", "ovpsim", "verilator"];

/// Board configuration loaded from boards.txt or built-in defaults.
#[derive(Debug, Clone, Serialize, Deserialize)]
///
/// `Default` exists for struct-update test construction
/// (`BoardConfig { mcu: ..., ..Default::default() }`); a defaulted
/// config is not a usable board definition.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct BoardConfig {
pub name: String,
pub mcu: String,
Expand Down
2 changes: 1 addition & 1 deletion crates/fbuild-deploy/src/probe_rs.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! probe-rs SWD flash path (FastLED/fbuild#935, #936).
//!
//! The FastLED fork of `probe-rs` — sources maintained on the `tools`
//! branch of [`FastLED/framework-arduino-lpc8xx`], cross-compiled by
//! branch of `FastLED/framework-arduino-lpc8xx`, cross-compiled by
//! `.github/workflows/fastled-release-cross.yml` — carries three
//! patches on top of upstream that together allow it to talk to the
//! LPC-Link2 v1.0.7 CMSIS-DAP firmware that ships on the LPC845-BRK:
Expand Down
Loading