stm32/usart_v1: implement tx
This commit is contained in:
parent
7fe674df6a
commit
852ca5a1c5
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
#[path = "../example_common.rs"]
|
#[path = "../example_common.rs"]
|
||||||
mod example_common;
|
mod example_common;
|
||||||
|
use cortex_m::prelude::_embedded_hal_blocking_serial_Write;
|
||||||
use embassy::executor::Executor;
|
use embassy::executor::Executor;
|
||||||
use embassy::time::Clock;
|
use embassy::time::Clock;
|
||||||
use embassy::util::Forever;
|
use embassy::util::Forever;
|
||||||
@ -22,9 +23,12 @@ async fn main_task() {
|
|||||||
let p = embassy_stm32::init(Default::default());
|
let p = embassy_stm32::init(Default::default());
|
||||||
|
|
||||||
let config = Config::default();
|
let config = Config::default();
|
||||||
let usart = Uart::new(p.USART3, p.PD9, p.PD8, NoPin, NoPin, config);
|
let mut usart = Uart::new(p.USART3, p.PD9, p.PD8, config, 16_000_000);
|
||||||
|
|
||||||
// TODO make it actually do something
|
loop {
|
||||||
|
info!("wrote");
|
||||||
|
usart.bwrite_all(b"Hello Embassy World!\r\n").unwrap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ZeroClock;
|
struct ZeroClock;
|
||||||
|
@ -1,58 +1,31 @@
|
|||||||
#![macro_use]
|
#![macro_use]
|
||||||
|
|
||||||
use core::marker::PhantomData;
|
#[cfg_attr(feature = "_usart_v1", path = "usart_v1.rs")]
|
||||||
|
#[cfg_attr(feature = "_usart_v2", path = "usart_v2.rs")]
|
||||||
|
mod usart;
|
||||||
|
|
||||||
use embassy::util::Unborrow;
|
pub use usart::*;
|
||||||
use embassy_extras::unborrow;
|
|
||||||
|
|
||||||
use crate::gpio::{NoPin, Pin};
|
use crate::gpio::Pin;
|
||||||
use crate::pac::usart::{regs, vals, Usart};
|
use crate::pac::usart::Usart;
|
||||||
use crate::peripherals;
|
|
||||||
|
|
||||||
|
/// Serial error
|
||||||
|
#[derive(Debug, Eq, PartialEq, Copy, Clone)]
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
pub struct Config {
|
pub enum Error {
|
||||||
pub baudrate: u32,
|
/// Framing error
|
||||||
pub data_bits: u8,
|
Framing,
|
||||||
pub stop_bits: u8,
|
/// Noise error
|
||||||
}
|
Noise,
|
||||||
|
/// RX buffer overrun
|
||||||
impl Default for Config {
|
Overrun,
|
||||||
fn default() -> Self {
|
/// Parity check error
|
||||||
Self {
|
Parity,
|
||||||
baudrate: 115200,
|
|
||||||
data_bits: 8,
|
|
||||||
stop_bits: 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct Uart<'d, T: Instance> {
|
|
||||||
inner: T,
|
|
||||||
phantom: PhantomData<&'d mut T>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'d, T: Instance> Uart<'d, T> {
|
|
||||||
pub fn new(
|
|
||||||
inner: impl Unborrow<Target = T>,
|
|
||||||
rx: impl Unborrow<Target = impl RxPin<T>>,
|
|
||||||
tx: impl Unborrow<Target = impl TxPin<T>>,
|
|
||||||
cts: impl Unborrow<Target = impl CtsPin<T>>,
|
|
||||||
rts: impl Unborrow<Target = impl RtsPin<T>>,
|
|
||||||
config: Config,
|
|
||||||
) -> Self {
|
|
||||||
unborrow!(inner, rx, tx, cts, rts);
|
|
||||||
|
|
||||||
Self {
|
|
||||||
inner,
|
|
||||||
phantom: PhantomData,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) mod sealed {
|
pub(crate) mod sealed {
|
||||||
use crate::gpio::{OptionalPin, Pin};
|
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
pub trait Instance {
|
pub trait Instance {
|
||||||
fn regs(&self) -> Usart;
|
fn regs(&self) -> Usart;
|
||||||
}
|
}
|
126
embassy-stm32/src/usart/usart_v1.rs
Normal file
126
embassy-stm32/src/usart/usart_v1.rs
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
use core::marker::PhantomData;
|
||||||
|
|
||||||
|
use embassy::util::Unborrow;
|
||||||
|
use embassy_extras::unborrow;
|
||||||
|
|
||||||
|
use crate::gpio::{NoPin, Pin};
|
||||||
|
use crate::pac::usart::{regs, vals, Usart};
|
||||||
|
use crate::peripherals;
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
||||||
|
pub enum DataBits {
|
||||||
|
DataBits8,
|
||||||
|
DataBits9,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
||||||
|
pub enum Parity {
|
||||||
|
ParityNone,
|
||||||
|
ParityEven,
|
||||||
|
ParityOdd,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
||||||
|
pub enum StopBits {
|
||||||
|
#[doc = "1 stop bit"]
|
||||||
|
STOP1,
|
||||||
|
#[doc = "0.5 stop bits"]
|
||||||
|
STOP0P5,
|
||||||
|
#[doc = "2 stop bits"]
|
||||||
|
STOP2,
|
||||||
|
#[doc = "1.5 stop bits"]
|
||||||
|
STOP1P5,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[non_exhaustive]
|
||||||
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
||||||
|
pub struct Config {
|
||||||
|
pub baudrate: u32,
|
||||||
|
pub data_bits: DataBits,
|
||||||
|
pub stop_bits: StopBits,
|
||||||
|
pub parity: Parity,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for Config {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
baudrate: 115200,
|
||||||
|
data_bits: DataBits::DataBits8,
|
||||||
|
stop_bits: StopBits::STOP1,
|
||||||
|
parity: Parity::ParityNone,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct Uart<'d, T: Instance> {
|
||||||
|
inner: T,
|
||||||
|
phantom: PhantomData<&'d mut T>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'d, T: Instance> Uart<'d, T> {
|
||||||
|
pub fn new(
|
||||||
|
inner: impl Unborrow<Target = T>,
|
||||||
|
rx: impl Unborrow<Target = impl RxPin<T>>,
|
||||||
|
tx: impl Unborrow<Target = impl TxPin<T>>,
|
||||||
|
config: Config,
|
||||||
|
pclk_freq: u32,
|
||||||
|
) -> Self {
|
||||||
|
unborrow!(inner, rx, tx);
|
||||||
|
|
||||||
|
// TODO: enable in RCC
|
||||||
|
|
||||||
|
// TODO: better calculation, including error checking and OVER8 if possible.
|
||||||
|
let div = (pclk_freq + (config.baudrate / 2)) / config.baudrate;
|
||||||
|
|
||||||
|
let r = inner.regs();
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
rx.set_as_af(rx.af_num());
|
||||||
|
tx.set_as_af(tx.af_num());
|
||||||
|
|
||||||
|
r.brr().write_value(regs::Brr(div));
|
||||||
|
r.cr1().write(|w| {
|
||||||
|
w.set_ue(true);
|
||||||
|
w.set_te(true);
|
||||||
|
w.set_re(true);
|
||||||
|
w.set_m(vals::M::M8);
|
||||||
|
w.set_pce(config.parity != Parity::ParityNone);
|
||||||
|
w.set_ps(match config.parity {
|
||||||
|
Parity::ParityOdd => vals::Ps::ODD,
|
||||||
|
Parity::ParityEven => vals::Ps::EVEN,
|
||||||
|
_ => vals::Ps::EVEN,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
r.cr2().write(|_w| {});
|
||||||
|
r.cr3().write(|_w| {});
|
||||||
|
}
|
||||||
|
|
||||||
|
Self {
|
||||||
|
inner,
|
||||||
|
phantom: PhantomData,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'d, T: Instance> embedded_hal::blocking::serial::Write<u8> for Uart<'d, T> {
|
||||||
|
type Error = Error;
|
||||||
|
fn bwrite_all(&mut self, buffer: &[u8]) -> Result<(), Self::Error> {
|
||||||
|
unsafe {
|
||||||
|
let r = self.inner.regs();
|
||||||
|
for &b in buffer {
|
||||||
|
while !r.sr().read().txe() {}
|
||||||
|
r.dr().write_value(regs::Dr(b as u32))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
fn bflush(&mut self) -> Result<(), Self::Error> {
|
||||||
|
unsafe {
|
||||||
|
let r = self.inner.regs();
|
||||||
|
while !r.sr().read().tc() {}
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user