mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2025-01-11 21:11:31 +11:00
Update LCD example.
This commit is contained in:
parent
29dd755b30
commit
0336458344
|
@ -1,26 +1,85 @@
|
||||||
|
//! # LCD Display Example
|
||||||
|
//!
|
||||||
|
//! In this example, the RP2040 is configured to drive a small two-line
|
||||||
|
//! alphanumeric LCD using the
|
||||||
|
//! [HD44780](https://crates.io/crates/hd44780-driver) driver.
|
||||||
|
//!
|
||||||
|
//! It drives the LCD by pushing data out of six GPIO pins. It may need to be
|
||||||
|
//! adapted to your particular board layout and/or pin assignment.
|
||||||
|
//!
|
||||||
|
//! See the `Cargo.toml` file for Copyright and licence details.
|
||||||
|
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
|
|
||||||
|
// The macro for our start-up function
|
||||||
use cortex_m_rt::entry;
|
use cortex_m_rt::entry;
|
||||||
use hal::pac;
|
|
||||||
use hal::sio::Sio;
|
// Ensure we halt the program on panic (if we don't mention this crate it won't
|
||||||
use hd44780_driver as hd44780;
|
// be linked)
|
||||||
use panic_halt as _;
|
use panic_halt as _;
|
||||||
|
|
||||||
|
// Alias for our HAL crate
|
||||||
use rp2040_hal as hal;
|
use rp2040_hal as hal;
|
||||||
|
|
||||||
|
// Our LCD driver
|
||||||
|
use hd44780_driver as hd44780;
|
||||||
|
|
||||||
|
// Traits we need
|
||||||
|
use embedded_time::fixed_point::FixedPoint;
|
||||||
|
use rp2040_hal::clocks::Clock;
|
||||||
|
|
||||||
|
// A shorter alias for the Peripheral Access Crate, which provides low-level
|
||||||
|
// register access
|
||||||
|
use hal::pac;
|
||||||
|
|
||||||
|
/// The linker will place this boot block at the start of our program image. We
|
||||||
|
/// need this to help the ROM bootloader get our code up and running.
|
||||||
#[link_section = ".boot2"]
|
#[link_section = ".boot2"]
|
||||||
#[used]
|
#[used]
|
||||||
pub static BOOT2: [u8; 256] = rp2040_boot2::BOOT_LOADER;
|
pub static BOOT2: [u8; 256] = rp2040_boot2::BOOT_LOADER;
|
||||||
|
|
||||||
|
/// External high-speed crystal on the Raspberry Pi Pico board is 12 MHz. Adjust
|
||||||
|
/// if your board has a different frequency
|
||||||
|
const XTAL_FREQ_HZ: u32 = 12_000_000u32;
|
||||||
|
|
||||||
|
/// Entry point to our bare-metal application.
|
||||||
|
///
|
||||||
|
/// The `#[entry]` macro ensures the Cortex-M start-up code calls this function
|
||||||
|
/// as soon as all global variables are initialised.
|
||||||
|
///
|
||||||
|
/// The function configures the RP2040 peripherals, writes to the LCD, then goes
|
||||||
|
/// to sleep.
|
||||||
#[entry]
|
#[entry]
|
||||||
fn main() -> ! {
|
fn main() -> ! {
|
||||||
|
// Grab our singleton objects
|
||||||
let mut pac = pac::Peripherals::take().unwrap();
|
let mut pac = pac::Peripherals::take().unwrap();
|
||||||
let core = pac::CorePeripherals::take().unwrap();
|
let core = pac::CorePeripherals::take().unwrap();
|
||||||
|
|
||||||
// AHL bus speed default
|
// Set up the watchdog driver - needed by the clock setup code
|
||||||
let mut delay_provider = cortex_m::delay::Delay::new(core.SYST, 12_000_000);
|
let mut watchdog = hal::watchdog::Watchdog::new(pac.WATCHDOG);
|
||||||
|
|
||||||
let sio = Sio::new(pac.SIO);
|
// Configure the clocks
|
||||||
|
let clocks = hal::clocks::init_clocks_and_plls(
|
||||||
|
XTAL_FREQ_HZ,
|
||||||
|
pac.XOSC,
|
||||||
|
pac.CLOCKS,
|
||||||
|
pac.PLL_SYS,
|
||||||
|
pac.PLL_USB,
|
||||||
|
&mut pac.RESETS,
|
||||||
|
&mut watchdog,
|
||||||
|
)
|
||||||
|
.ok()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
// The delay object lets us wait for specified amounts of time (in
|
||||||
|
// milliseconds)
|
||||||
|
let mut delay = cortex_m::delay::Delay::new(core.SYST, clocks.system_clock.freq().integer());
|
||||||
|
|
||||||
|
// The single-cycle I/O block controls our GPIO pins
|
||||||
|
let sio = hal::sio::Sio::new(pac.SIO);
|
||||||
|
|
||||||
|
// Set the pins to their default state
|
||||||
let pins = hal::gpio::Pins::new(
|
let pins = hal::gpio::Pins::new(
|
||||||
pac.IO_BANK0,
|
pac.IO_BANK0,
|
||||||
pac.PADS_BANK0,
|
pac.PADS_BANK0,
|
||||||
|
@ -28,26 +87,33 @@ fn main() -> ! {
|
||||||
&mut pac.RESETS,
|
&mut pac.RESETS,
|
||||||
);
|
);
|
||||||
|
|
||||||
let lcd = hd44780::HD44780::new_4bit(
|
// Create the LCD driver from some GPIO pins
|
||||||
|
let mut lcd = hd44780::HD44780::new_4bit(
|
||||||
pins.gpio16.into_push_pull_output(), // Register Select
|
pins.gpio16.into_push_pull_output(), // Register Select
|
||||||
pins.gpio17.into_push_pull_output(), // Enable
|
pins.gpio17.into_push_pull_output(), // Enable
|
||||||
pins.gpio18.into_push_pull_output(), // d4
|
pins.gpio18.into_push_pull_output(), // d4
|
||||||
pins.gpio19.into_push_pull_output(), // d5
|
pins.gpio19.into_push_pull_output(), // d5
|
||||||
pins.gpio20.into_push_pull_output(), // d6
|
pins.gpio20.into_push_pull_output(), // d6
|
||||||
pins.gpio21.into_push_pull_output(), // d7
|
pins.gpio21.into_push_pull_output(), // d7
|
||||||
&mut delay_provider,
|
&mut delay,
|
||||||
);
|
).unwrap();
|
||||||
|
|
||||||
let mut lcd = lcd.unwrap();
|
// Clear the screen
|
||||||
|
lcd.reset(&mut delay).unwrap();
|
||||||
|
lcd.clear(&mut delay).unwrap();
|
||||||
|
|
||||||
lcd.reset(&mut delay_provider).unwrap();
|
// Write to the top line
|
||||||
lcd.clear(&mut delay_provider).unwrap();
|
lcd.write_str("rp-hal on", &mut delay).unwrap();
|
||||||
lcd.write_str("rp-hal on", &mut delay_provider).unwrap();
|
|
||||||
lcd.set_cursor_pos(40, &mut delay_provider).unwrap();
|
|
||||||
lcd.set_cursor_visibility(hd44780::Cursor::Visible, &mut delay_provider)
|
|
||||||
.unwrap();
|
|
||||||
lcd.write_str("HD44780!", &mut delay_provider).unwrap();
|
|
||||||
|
|
||||||
|
// Move the cursor
|
||||||
|
lcd.set_cursor_pos(40, &mut delay).unwrap();
|
||||||
|
|
||||||
|
// Write more more text
|
||||||
|
lcd.write_str("HD44780!", &mut delay).unwrap();
|
||||||
|
|
||||||
|
// Do nothing - we're finished
|
||||||
#[allow(clippy::empty_loop)]
|
#[allow(clippy::empty_loop)]
|
||||||
loop {}
|
loop {
|
||||||
|
// Empty loop
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue