2020-12-31 03:24:32 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(trait_alias)]
|
2021-03-17 01:48:16 +00:00
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
2020-12-31 03:24:32 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2021-01-13 23:53:05 +00:00
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use example_common::{panic, *};
|
2020-12-31 03:24:32 +00:00
|
|
|
|
|
|
|
use cortex_m::singleton;
|
|
|
|
use cortex_m_rt::entry;
|
|
|
|
use embassy::executor::{task, Executor};
|
2021-03-28 23:14:18 +00:00
|
|
|
use embassy::traits::uart::{Read, Write};
|
2020-12-31 03:24:32 +00:00
|
|
|
use embassy::util::Forever;
|
2020-12-31 22:59:42 +00:00
|
|
|
use embassy_stm32f4::interrupt;
|
2020-12-31 03:24:32 +00:00
|
|
|
use embassy_stm32f4::serial;
|
2021-03-28 23:14:18 +00:00
|
|
|
use futures::pin_mut;
|
2021-03-04 23:20:35 +00:00
|
|
|
use stm32f4xx_hal::dma::StreamsTuple;
|
2021-02-14 00:41:36 +00:00
|
|
|
use stm32f4xx_hal::prelude::*;
|
2021-01-14 17:42:23 +00:00
|
|
|
use stm32f4xx_hal::serial::config::Config;
|
2020-12-31 03:24:32 +00:00
|
|
|
use stm32f4xx_hal::stm32;
|
|
|
|
|
|
|
|
#[task]
|
2021-02-14 00:41:36 +00:00
|
|
|
async fn run(dp: stm32::Peripherals, _cp: cortex_m::Peripherals) {
|
2021-02-20 00:29:26 +00:00
|
|
|
dp.DBGMCU.cr.modify(|_, w| {
|
|
|
|
w.dbg_sleep().set_bit();
|
|
|
|
w.dbg_standby().set_bit();
|
|
|
|
w.dbg_stop().set_bit()
|
|
|
|
});
|
|
|
|
dp.RCC.ahb1enr.modify(|_, w| w.dma1en().enabled());
|
|
|
|
|
2020-12-31 03:24:32 +00:00
|
|
|
// https://gist.github.com/thalesfragoso/a07340c5df6eee3b04c42fdc69ecdcb1
|
|
|
|
let gpioa = dp.GPIOA.split();
|
|
|
|
let rcc = dp.RCC.constrain();
|
|
|
|
|
|
|
|
let clocks = rcc
|
|
|
|
.cfgr
|
|
|
|
.use_hse(16.mhz())
|
|
|
|
.sysclk(48.mhz())
|
|
|
|
.pclk1(24.mhz())
|
|
|
|
.freeze();
|
|
|
|
|
2021-03-04 23:20:35 +00:00
|
|
|
let streams = StreamsTuple::new(dp.DMA2);
|
|
|
|
|
2021-03-19 01:23:09 +00:00
|
|
|
let _serial = unsafe {
|
2021-01-07 03:02:02 +00:00
|
|
|
serial::Serial::new(
|
2021-01-14 17:42:23 +00:00
|
|
|
dp.USART1,
|
2021-03-04 23:20:35 +00:00
|
|
|
(streams.7, streams.2),
|
2021-01-14 17:42:23 +00:00
|
|
|
(
|
|
|
|
gpioa.pa9.into_alternate_af7(),
|
|
|
|
gpioa.pa10.into_alternate_af7(),
|
|
|
|
),
|
2021-01-06 20:31:43 +00:00
|
|
|
interrupt::take!(DMA2_STREAM7),
|
|
|
|
interrupt::take!(DMA2_STREAM2),
|
|
|
|
interrupt::take!(USART1),
|
2021-01-14 17:42:23 +00:00
|
|
|
Config::default().baudrate(9600.bps()),
|
2021-01-06 20:31:43 +00:00
|
|
|
clocks,
|
2021-01-07 03:02:02 +00:00
|
|
|
)
|
|
|
|
};
|
2021-03-04 23:20:35 +00:00
|
|
|
|
|
|
|
let streams = StreamsTuple::new(dp.DMA1);
|
|
|
|
|
|
|
|
let mut serial = unsafe {
|
|
|
|
serial::Serial::new(
|
|
|
|
dp.USART2,
|
|
|
|
(streams.6, streams.5),
|
|
|
|
(
|
|
|
|
gpioa.pa2.into_alternate_af7(),
|
|
|
|
gpioa.pa3.into_alternate_af7(),
|
|
|
|
),
|
|
|
|
interrupt::take!(DMA1_STREAM6),
|
|
|
|
interrupt::take!(DMA1_STREAM5),
|
|
|
|
interrupt::take!(USART2),
|
|
|
|
Config::default().baudrate(9600.bps()),
|
|
|
|
clocks,
|
|
|
|
)
|
|
|
|
};
|
2021-03-28 23:14:18 +00:00
|
|
|
pin_mut!(serial);
|
|
|
|
|
2021-01-07 03:02:02 +00:00
|
|
|
let buf = singleton!(: [u8; 30] = [0; 30]).unwrap();
|
2020-12-31 03:24:32 +00:00
|
|
|
|
2021-01-07 03:02:02 +00:00
|
|
|
buf[5] = 0x01;
|
2021-03-28 23:14:18 +00:00
|
|
|
serial.write(buf).await.unwrap();
|
2020-12-31 03:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static EXECUTOR: Forever<Executor> = Forever::new();
|
|
|
|
|
|
|
|
#[entry]
|
|
|
|
fn main() -> ! {
|
|
|
|
let dp = stm32::Peripherals::take().unwrap();
|
|
|
|
let cp = cortex_m::peripheral::Peripherals::take().unwrap();
|
|
|
|
|
2021-02-02 04:14:52 +00:00
|
|
|
let executor = EXECUTOR.put(Executor::new());
|
|
|
|
executor.run(|spawner| {
|
|
|
|
unwrap!(spawner.spawn(run(dp, cp)));
|
|
|
|
});
|
2020-12-31 03:24:32 +00:00
|
|
|
}
|