This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
instructions: pQAAAEECAACxAAAAxQAAAD0BAADRAAAAMQEAAPUAAADxAAAAAAAAAM0BAAAdAQAAAAAAAAgJAAB/AAAAdQAAAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAewAAAH0AAAD+5/7n/uf+5/7nBkmNRgZJgfMJiAAghkbsRgAgACEDSpBHAAAICQAAEAkAAH0CAAABSxtocEfARvQHAAABIQNKACATaItDE2BwR8BGEOAA4AFLACAbaHBH9AcAAAZLQRgbaAN4ATCTQgPRiEL50QAgcEcBIPznwEb0BwAAcEcAAAMAQBgHSRC1i0IH2dIaHHjRXIxCA9EBM4NC+NEQvRgA/OfARv//IAgDSxAAGmgBOBpoACj70XBH9AcAABC1TSAA8Oz5EL0AAPC1IE8NADtoFADDsAArJtFAIiEAAqgA8Dv7G0sbaAArEtAEmRlOyhcSBRMNWxgbEwEiKQAgADNgAPBy+jNoATszYAEjO2AI4AKbQiDbBwDVNCAA8L/5ACjj0EOw8L0LTjNoAZMAKwXRAiIgAADwWPoBm+fnACIgAADwUvozaAE7M2Dq5wAIAAD4BwAA/AcAAPe1gCcGAAUAAZIMC38BAZs5AJobKABSGf/3qv8AKAXbgCMBPFsB7RgALPDR/r0AABC1BAAcIgAhAPDt+gdLI2AHS2NgB0tjgSojo3MGSyNhBktjYQZLo2EQvcBGqHLrKDF6AwACQAAA2AB4AMcAIAABAAUAELWKsAOo//fZ/wEjAJMIS5AgXGsAIwOpGgBABaBHBUsFSgAgWmAFIphgGmAKsBC9nAIwABDgAOBNdQAAACBwRwtoA2AAIHBHA2gAIAtgcEc3tWpGAwAAIAIyAZAQgNUrFdjQKwjYQis80A7YIytY0DErT9ACOD690TsYAAQrBtgA8Hr6CA0FIhEAcStG0AIgQELw5ytLG2gLgAAg6+cKaClLGmD558AkgCAAI2QCQAHNWB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! # I²C Example | |
//! | |
//! This application demonstrates how to talk to I²C devices with an RP2040. | |
//! | |
//! It may need to be adapted to your particular board layout and/or pin assignment. | |
//! | |
//! See the `Cargo.toml` file for Copyright and license details. | |
#![no_std] | |
#![no_main] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "attach_test" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
probe-rs = { git = "https://github.com/9names/probe-rs", rev = "d9ab28d43c72790ac066b771e8391fa3bae043bc" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! # Pico USB Two Serial port Example | |
//! | |
//! Creates two USB Serial devices on a Pico board, with the USB driver running in | |
//! the main thread. | |
//! | |
//! This will create two USB Serial device echoing anything they receives. | |
//! On the first port incoming ASCII characters are converted to uppercase. | |
//! On the second port incoming ASCII characters are converted to lowercase. | |
//! | |
//! See the `Cargo.toml` file for Copyright and license details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "hello-wch" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
panic-halt = "0.2.0" | |
riscv-rt = "0.11.0" | |
embedded-hal = "0.2.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
riscv64-unknown-elf-size target/riscv32ec-unknown-none-elf/release/hello-wch --radix=10 | |
text data bss dec hex filename | |
496 0 2048 2544 9f0 target/riscv32ec-unknown-none-elf/release/hello-wch | |
riscv64-unknown-elf-nm target/riscv32ec-unknown-none-elf/release/hello-wch --print-size --size-sort --radix=d | |
00000396 00000002 T DefaultExceptionHandler | |
00000398 00000002 T DefaultInterruptHandler | |
00000400 00000004 T default_pre_init | |
00000404 00000020 T default_mp_hook | |
00000424 00000022 T default_setup_interrupts | |
00000352 00000044 T main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "stm32f4-test" | |
version = "0.1.0" | |
edition = "2021" | |
publish = false | |
[dependencies] | |
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } | |
stm32f4 = { path = "../stm32f4", features = ["rt", "critical-section"] } | |
embedded-hal = { version="0.2.7", features = ["unproven"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "bl702-hal" | |
version = "0.0.3" | |
edition = "2021" | |
license = "MIT OR MulanPSL-2.0" | |
keywords = ["hal", "bl702", "riscv"] | |
categories = ["embedded", "no-std", "hardware-support"] | |
repository = "https://github.com/9names/bl702-hal" | |
description = "HAL for the Bouffalo Lab BL702 microcontroller family" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! Blinks the LED on a Pico board | |
//! | |
//! This will blink an LED attached to GP25, which is the pin the Pico uses for the on-board LED. | |
#![no_std] | |
#![no_main] | |
use cortex_m::prelude::_embedded_hal_watchdog_Watchdog; | |
use cortex_m_rt::entry; | |
use defmt::*; | |
use defmt_rtt as _; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! Blinks the LED on a Pico board | |
//! | |
//! This will blink an LED attached to GP25, which is the pin the Pico uses for the on-board LED. | |
#![no_std] | |
#![no_main] | |
use bsp::{entry, hal}; | |
use cortex_m::delay::Delay; | |
use defmt::*; | |
use defmt_rtt as _; |
NewerOlder