50 lines
1.7 KiB
Rust
50 lines
1.7 KiB
Rust
//! This shows how to write text to UART0.
|
|
//!
|
|
//! You can see the output with `espflash` if you provide the `--monitor`
|
|
//! option.
|
|
//!
|
|
//! Depending on the chip, you will need to ensure that you are connected to
|
|
//! the UART USB port, and not the USB-SERIAL-JTAG port. If you want to test
|
|
//! printing over USB-SERIAL-JTAG, try the usb_serial_jtag example instead.
|
|
|
|
//% CHIPS: esp32 esp32c2 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::fmt::Write;
|
|
|
|
use esp_backtrace as _;
|
|
use esp_hal::{delay::Delay, prelude::*, uart::Uart};
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let peripherals = esp_hal::init(esp_hal::Config::default());
|
|
|
|
let delay = Delay::new();
|
|
|
|
// Default pins for Uart/Serial communication
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(feature = "esp32")] {
|
|
let (mut tx_pin, mut rx_pin) = (peripherals.GPIO1, peripherals.GPIO3);
|
|
} else if #[cfg(feature = "esp32c2")] {
|
|
let (mut tx_pin, mut rx_pin) = (peripherals.GPIO20, peripherals.GPIO19);
|
|
} else if #[cfg(feature = "esp32c3")] {
|
|
let (mut tx_pin, mut rx_pin) = (peripherals.GPIO21, peripherals.GPIO20);
|
|
} else if #[cfg(feature = "esp32c6")] {
|
|
let (mut tx_pin, mut rx_pin) = (peripherals.GPIO16, peripherals.GPIO17);
|
|
} else if #[cfg(feature = "esp32h2")] {
|
|
let (mut tx_pin, mut rx_pin) = (peripherals.GPIO24, peripherals.GPIO23);
|
|
} else if #[cfg(any(feature = "esp32s2", feature = "esp32s3"))] {
|
|
let (mut tx_pin, mut rx_pin) = (peripherals.GPIO43, peripherals.GPIO44);
|
|
}
|
|
}
|
|
|
|
let mut uart0 = Uart::new(peripherals.UART0, &mut rx_pin, &mut tx_pin).unwrap();
|
|
|
|
loop {
|
|
writeln!(uart0, "Hello world!").unwrap();
|
|
delay.delay(1.secs());
|
|
}
|
|
}
|