Compare commits

..

No commits in common. "910010ba22437efe5777e95ddba0793c96b4d6d7" and "dda09ca009e8a6d9db86e78ddeb76221b6acd3ca" have entirely different histories.

2 changed files with 124 additions and 244 deletions

View file

@ -7,10 +7,7 @@ license = "MIT OR Apache-2.0"
[dependencies] [dependencies]
cortex-m = {version = "0.7"} cortex-m = {version = "0.7"}
cortex-m-rt = "0.7" cortex-m-rt = "0.7"
cortex-m-rtic = "1.1.4"
embedded-hal = { version = "0.2.5", features = ["unproven"] } embedded-hal = { version = "0.2.5", features = ["unproven"] }
embedded-alloc = "0.5.1"
rp2040-monotonic = "1.3.0"
defmt = "0.3" defmt = "0.3"
defmt-rtt = "0.4" defmt-rtt = "0.4"
@ -20,6 +17,7 @@ panic-probe = { version = "0.3", features = ["print-defmt"] }
rp-pico = "0.8" rp-pico = "0.8"
max31855 = "0.1.0" max31855 = "0.1.0"
hd44780-driver = "0.4.0" hd44780-driver = "0.4.0"
embedded-alloc = "0.5.1"
# cargo build/run # cargo build/run
[profile.dev] [profile.dev]

View file

@ -1,271 +1,153 @@
#![no_std] #![no_std]
#![no_main] #![no_main]
#[rtic::app( extern crate alloc;
device = rp_pico::hal::pac, use alloc::format;
dispatchers = [TIMER_IRQ_1] use bsp::{
)] entry,
mod app { hal::{
extern crate alloc; gpio,
use alloc::format; uart::{UartConfig, UartPeripheral},
use core::fmt::Write; },
use cortex_m::delay::Delay; };
use defmt_rtt as _; use core::fmt::Write;
use embedded_alloc::Heap; use cortex_m::delay::Delay;
use embedded_hal::{ use defmt_rtt as _;
digital::v2::{OutputPin, ToggleableOutputPin}, use embedded_alloc::Heap;
spi::MODE_0, use embedded_hal::digital::v2::OutputPin;
}; use embedded_hal::spi::MODE_0;
use hd44780::{bus::FourBitBus, HD44780}; use panic_probe as _;
use panic_probe as _;
use rp2040_monotonic::{fugit::Duration, Rp2040Monotonic}; // Provide an alias for our BSP so we can switch targets quickly.
// Uncomment the BSP you included in Cargo.toml, the rest of the code does not need to change.
use rp_pico as bsp;
use rp_pico::{ use bsp::hal::{
hal::{ clocks::{init_clocks_and_plls, Clock},
clocks::{init_clocks_and_plls, Clock}, fugit::RateExtU32,
fugit::RateExtU32, pac,
gpio::{ sio::Sio,
self, spi::Spi,
bank0::{ watchdog::Watchdog,
Gpio0, Gpio1, Gpio14, Gpio16, Gpio17, Gpio18, Gpio19, Gpio2, Gpio20, Gpio21, };
Gpio25, Gpio3, Gpio4, Gpio5,
},
FunctionSio, FunctionSpi, FunctionUart, Pin, PullDown, SioOutput,
},
sio::Sio,
spi::{self, Spi},
uart::{self, UartConfig, UartPeripheral},
watchdog::Watchdog,
},
pac::{SPI0, UART0},
Pins,
};
use hd44780_driver as hd44780; use hd44780_driver as hd44780;
use max31855::{Max31855, Unit}; use max31855::{Max31855, Unit};
#[global_allocator] #[global_allocator]
static HEAP: Heap = Heap::empty(); static HEAP: Heap = Heap::empty();
const MONO_NUM: u32 = 1; fn write_lcd<T: hd44780_driver::bus::DataBus>(
const MONO_DENOM: u32 = 1000000; lcd: &mut hd44780::HD44780<T>,
const ONE_SEC_TICKS: u64 = 1000000; delay: &mut Delay,
string: &str,
) {
lcd.reset(delay).unwrap();
lcd.clear(delay).unwrap();
lcd.write_str(string, delay).unwrap();
}
type Uart = UartPeripheral< #[entry]
uart::Enabled, fn main() -> ! {
UART0, let mut pac = pac::Peripherals::take().unwrap();
( let core = pac::CorePeripherals::take().unwrap();
Pin<Gpio0, FunctionUart, PullDown>, let mut watchdog = Watchdog::new(pac.WATCHDOG);
Pin<Gpio1, FunctionUart, PullDown>, let sio = Sio::new(pac.SIO);
),
>;
type Led = Pin<Gpio25, FunctionSio<SioOutput>, PullDown>; // External high-speed crystal on the pico board is 12Mhz
let external_xtal_freq_hz = 12_000_000u32;
let clocks = init_clocks_and_plls(
external_xtal_freq_hz,
pac.XOSC,
pac.CLOCKS,
pac.PLL_SYS,
pac.PLL_USB,
&mut pac.RESETS,
&mut watchdog,
)
.ok()
.unwrap();
type ExternalLed = Pin<Gpio14, FunctionSio<SioOutput>, PullDown>; //initalize the heap
{
type ThermocoupleSpi = Spi< use core::mem::MaybeUninit;
spi::Enabled, const HEAP_SIZE: usize = 1024;
SPI0, static mut HEAP_MEM: [MaybeUninit<u8>; HEAP_SIZE] = [MaybeUninit::uninit(); HEAP_SIZE];
( unsafe { HEAP.init(HEAP_MEM.as_ptr() as usize, HEAP_SIZE) }
Pin<Gpio3, FunctionSpi, PullDown>,
Pin<Gpio4, FunctionSpi, PullDown>,
Pin<Gpio2, FunctionSpi, PullDown>,
),
>;
type Lcd = HD44780<
FourBitBus<
Pin<Gpio16, FunctionSio<SioOutput>, PullDown>,
Pin<Gpio17, FunctionSio<SioOutput>, PullDown>,
Pin<Gpio18, FunctionSio<SioOutput>, PullDown>,
Pin<Gpio19, FunctionSio<SioOutput>, PullDown>,
Pin<Gpio20, FunctionSio<SioOutput>, PullDown>,
Pin<Gpio21, FunctionSio<SioOutput>, PullDown>,
>,
>;
#[monotonic(binds = TIMER_IRQ_0, default = true)]
type Rp2040Mono = Rp2040Monotonic;
struct Thermocouple {
cs: Pin<Gpio5, FunctionSio<SioOutput>, PullDown>,
spi: ThermocoupleSpi,
} }
impl Thermocouple { let mut delay = cortex_m::delay::Delay::new(core.SYST, clocks.system_clock.freq().to_Hz());
fn read_temp(
&mut self,
) -> Result<f32, max31855::Error<core::convert::Infallible, core::convert::Infallible>>
{
self.spi.read_thermocouple(&mut self.cs, Unit::Celsius)
}
}
fn write_lcd(lcd: &mut Lcd, delay: &mut Delay, string: &str) { let pins = bsp::Pins::new(
lcd.reset(delay).unwrap(); pac.IO_BANK0,
lcd.clear(delay).unwrap(); pac.PADS_BANK0,
lcd.write_str(string, delay).unwrap(); sio.gpio_bank0,
} &mut pac.RESETS,
);
#[shared] let uart_pins = (pins.gpio0.into_function(), pins.gpio1.into_function());
struct Shared { let mut uart = UartPeripheral::new(pac.UART0, uart_pins, &mut pac.RESETS)
delay: Delay,
}
#[local]
struct Local {
led: Led,
thermocouple: Thermocouple,
lcd: Lcd,
external_led: ExternalLed,
}
#[init]
fn init(mut ctx: init::Context) -> (Shared, Local, init::Monotonics) {
let mut watchdog = Watchdog::new(ctx.device.WATCHDOG);
let sio = Sio::new(ctx.device.SIO);
// External high-speed crystal on the pico board is 12Mhz
let external_xtal_freq_hz = 12_000_000u32;
let clocks = init_clocks_and_plls(
external_xtal_freq_hz,
ctx.device.XOSC,
ctx.device.CLOCKS,
ctx.device.PLL_SYS,
ctx.device.PLL_USB,
&mut ctx.device.RESETS,
&mut watchdog,
)
.ok()
.unwrap();
//initalize the heap
{
use core::mem::MaybeUninit;
const HEAP_SIZE: usize = 1024;
static mut HEAP_MEM: [MaybeUninit<u8>; HEAP_SIZE] = [MaybeUninit::uninit(); HEAP_SIZE];
unsafe { HEAP.init(HEAP_MEM.as_ptr() as usize, HEAP_SIZE) }
}
let mut delay =
cortex_m::delay::Delay::new(ctx.core.SYST, clocks.system_clock.freq().to_Hz());
let pins = Pins::new(
ctx.device.IO_BANK0,
ctx.device.PADS_BANK0,
sio.gpio_bank0,
&mut ctx.device.RESETS,
);
let mut uart: Uart = UartPeripheral::new(
ctx.device.UART0,
(pins.gpio0.into_function(), pins.gpio1.into_function()),
&mut ctx.device.RESETS,
)
.enable( .enable(
UartConfig::new( UartConfig::new(
9600u32.Hz(), 9600u32.Hz(),
rp_pico::hal::uart::DataBits::Eight, bsp::hal::uart::DataBits::Eight,
None, None,
rp_pico::hal::uart::StopBits::One, bsp::hal::uart::StopBits::One,
), ),
clocks.peripheral_clock.freq(), clocks.peripheral_clock.freq(),
) )
.unwrap(); .unwrap();
defmt::info!("Program start"); defmt::info!("Program start");
writeln!(uart, "Program start\r",).unwrap(); writeln!(uart, "Program start\r",).unwrap();
let mut led_pin: Led = pins.led.into_push_pull_output(); let mut led_pin = pins.led.into_push_pull_output();
let mut external_led_pin: ExternalLed = pins.gpio14.into_push_pull_output(); let mut external_led_pin = pins.gpio14.into_push_pull_output();
//clk
let thermometer_spi_sck = pins.gpio2.into_function::<gpio::FunctionSpi>();
//MOSI, I think unused?
let thermometer_spi_tx = pins.gpio3.into_function::<gpio::FunctionSpi>();
//do, or MISO.
let thermometer_spi_rx = pins.gpio4.into_function::<gpio::FunctionSpi>();
//cs
let mut thermometer_spi_csn = pins
.gpio5
.into_push_pull_output_in_state(gpio::PinState::Low);
//cs let thermometer_spi_device = pac.SPI0;
let thermometer_spi_device = ctx.device.SPI0; let spi_pin_layout = (thermometer_spi_tx, thermometer_spi_rx, thermometer_spi_sck);
let thermocouple = Thermocouple { let mut spi = Spi::<_, _, _, 8>::new(thermometer_spi_device, spi_pin_layout).init(
cs: pins &mut pac.RESETS,
.gpio5 125_000_000u32.Hz(),
.into_push_pull_output_in_state(gpio::PinState::Low), 4u32.MHz(),
MODE_0,
);
spi: Spi::<_, _, _, 8>::new( let mut lcd = hd44780::HD44780::new_4bit(
thermometer_spi_device, pins.gpio16.into_push_pull_output(), //rs
( pins.gpio17.into_push_pull_output(), //enable
//mosi pins.gpio18.into_push_pull_output(), //d4
pins.gpio3.into_function::<gpio::FunctionSpi>(), pins.gpio19.into_push_pull_output(), //d5
//miso/do pins.gpio20.into_push_pull_output(), //d6
pins.gpio4.into_function::<gpio::FunctionSpi>(), pins.gpio21.into_push_pull_output(), //d6
//clk &mut delay,
pins.gpio2.into_function::<gpio::FunctionSpi>(), )
), .unwrap();
)
.init( write_lcd(&mut lcd, &mut delay, "Starting");
&mut ctx.device.RESETS, loop {
125_000_000u32.Hz(), led_pin.set_high().unwrap();
4u32.MHz(), external_led_pin.set_low().unwrap();
MODE_0, delay.delay_ms(500);
), led_pin.set_low().unwrap();
external_led_pin.set_high().unwrap();
delay.delay_ms(500);
match spi.read_thermocouple(&mut thermometer_spi_csn, Unit::Celsius) {
Ok(v) => {
writeln!(uart, "Current: {} \r", v).unwrap();
write_lcd(&mut lcd, &mut delay, &format!("{:02.2} C", v))
}
Err(e) => defmt::error!("error reading temp {}", defmt::Debug2Format(&e)),
}; };
let mut lcd: Lcd = hd44780::HD44780::new_4bit(
pins.gpio16.into_push_pull_output(), //rs
pins.gpio17.into_push_pull_output(), //enable
pins.gpio18.into_push_pull_output(), //d4
pins.gpio19.into_push_pull_output(), //d5
pins.gpio20.into_push_pull_output(), //d6
pins.gpio21.into_push_pull_output(), //d6
&mut delay,
)
.unwrap();
let mono = Rp2040Mono::new(ctx.device.TIMER);
write_lcd(&mut lcd, &mut delay, "Starting");
(
Shared { delay },
Local {
led: led_pin,
thermocouple,
lcd,
external_led: external_led_pin,
},
init::Monotonics(mono),
)
// loop {
// led_pin.set_high().unwrap();
// external_led_pin.set_low().unwrap();
// delay.delay_ms(500);
// led_pin.set_low().unwrap();
// external_led_pin.set_high().unwrap();
// delay.delay_ms(500);
// match thermocouple.read_temp() {
// Ok(v) => {
// writeln!(uart, "Current: {} \r", v).unwrap();
// write_lcd(&mut lcd, &mut delay, &format!("{:02.2} C", v))
// }
// Err(e) => defmt::error!("error reading temp {}", defmt::Debug2Format(&e)),
// };
// }
}
#[task(local = [led])]
fn heartbeat(ctx: heartbeat::Context) {
// Flicker the built-in LED
ctx.local.led.toggle().unwrap();
// Re-spawn this task after 1 second
let one_second = Duration::<u64, MONO_NUM, MONO_DENOM>::from_ticks(ONE_SEC_TICKS);
heartbeat::spawn_after(one_second).unwrap();
}
#[task(local = [external_led])]
fn second_heartbeat(ctx: second_heartbeat::Context) {
// Flicker the built-in LED
ctx.local.external_led.toggle().unwrap();
// Re-spawn this task after 1 second
let one_and_one_half_second =
Duration::<u64, MONO_NUM, MONO_DENOM>::from_ticks((ONE_SEC_TICKS as f32 * 1.5) as u64);
heartbeat::spawn_after(one_and_one_half_second).unwrap();
} }
} }