dshot debugging

This commit is contained in:
Robert Schauklies 2026-01-22 22:04:39 +01:00
parent 3e5a905544
commit 9948a76602
3 changed files with 26 additions and 16 deletions

View file

@ -7,10 +7,10 @@
let
# Define the specific toolchain with ESP32-C6 support
rustToolchain = pkgs.rust-bin.selectLatestNightlyWith(toolchain: toolchain.default.override {
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
targets = [ "riscv32imac-unknown-none-elf" ];
extensions = [ "rust-src" "llvm-tools-preview" ];
});
};
in
pkgs.mkShell {
nativeBuildInputs = [