Compare commits
No commits in common. "7ce1529e884d938a1628217e73b32adf5278dcee" and "4ce5d0a1b33cd7b25846be58206bc7af5638be70" have entirely different histories.
7ce1529e88
...
4ce5d0a1b3
|
@ -11,22 +11,20 @@ use panic_halt as _;
|
|||
use stm32f0xx_hal as hal;
|
||||
|
||||
use hal::adc::Adc;
|
||||
use hal::delay::Delay;
|
||||
use hal::pac::{CorePeripherals, Peripherals};
|
||||
use hal::pac::Peripherals;
|
||||
use hal::prelude::*;
|
||||
use hal::pwm;
|
||||
use hal::usb::{Peripheral, UsbBus};
|
||||
|
||||
use touch::{SysCfg, Touch};
|
||||
use touch::Touch;
|
||||
|
||||
use usb::Usb;
|
||||
|
||||
#[entry]
|
||||
fn main() -> ! {
|
||||
let mut p = Peripherals::take().unwrap();
|
||||
let cp = CorePeripherals::take().unwrap();
|
||||
|
||||
let sys_cfg = SysCfg::new(p.SYSCFG, &mut p.RCC);
|
||||
let touch = Touch::new(p.SYSCFG, p.EXTI, &mut p.RCC);
|
||||
|
||||
let mut rcc = p
|
||||
.RCC
|
||||
|
@ -135,10 +133,7 @@ fn main() -> ! {
|
|||
let mut _pwm6 = pwm::tim1(p.TIM1, pwm6_pin, &mut rcc, 250.khz());
|
||||
let (mut _pwm8, mut _pwm7) = pwm::tim15(p.TIM15, (pwm8_pin, pwm7_pin), &mut rcc, 250.khz());
|
||||
|
||||
let delay = Delay::new(cp.SYST, &mut rcc);
|
||||
|
||||
let touch = Touch::new(sys_cfg, p.EXTI, delay.clone());
|
||||
touch.enable();
|
||||
touch.setup();
|
||||
|
||||
loop {
|
||||
usb.poll();
|
||||
|
|
|
@ -1,214 +1,79 @@
|
|||
use core::cell::RefCell;
|
||||
|
||||
use cortex_m::interrupt::{CriticalSection, Mutex};
|
||||
|
||||
use stm32f0xx_hal::delay::Delay;
|
||||
use stm32f0xx_hal::pac::{interrupt, Interrupt, EXTI, RCC, SYSCFG};
|
||||
|
||||
static GLOBALS: Mutex<RefCell<Option<Globals>>> = Mutex::new(RefCell::new(None));
|
||||
|
||||
pub struct SysCfg {
|
||||
pub struct Touch {
|
||||
exti: EXTI,
|
||||
syscfg: SYSCFG,
|
||||
}
|
||||
|
||||
impl SysCfg {
|
||||
pub fn new(syscfg: SYSCFG, rcc: &mut RCC) -> Self {
|
||||
cortex_m::interrupt::free(|_| {
|
||||
rcc.apb2enr.modify(|_, w| w.syscfgen().set_bit());
|
||||
});
|
||||
|
||||
Self { syscfg }
|
||||
}
|
||||
|
||||
fn take(self) -> SYSCFG {
|
||||
self.syscfg
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Touch;
|
||||
|
||||
impl Touch {
|
||||
pub fn new(sys_cfg: SysCfg, exti: EXTI, delay: Delay) -> Self {
|
||||
let _ = cortex_m::interrupt::free(|cs| {
|
||||
GLOBALS
|
||||
.borrow(cs)
|
||||
.replace(Some(Globals::new(sys_cfg.take(), exti, delay)))
|
||||
});
|
||||
pub fn new(syscfg: SYSCFG, exti: EXTI, rcc: &mut RCC) -> Self {
|
||||
cortex_m::interrupt::free(|_| rcc.apb2enr.modify(|_, w| w.syscfgen().set_bit()));
|
||||
|
||||
Self
|
||||
Self { exti, syscfg }
|
||||
}
|
||||
|
||||
pub fn enable(&self) {
|
||||
cortex_m::interrupt::free(|cs| {
|
||||
GLOBALS
|
||||
.borrow(cs)
|
||||
.borrow()
|
||||
.as_ref()
|
||||
.expect("GLOBALS should not be None")
|
||||
.setup_interrupts(cs)
|
||||
pub fn setup(&self) {
|
||||
cortex_m::interrupt::free(|_| {
|
||||
self.syscfg.exticr1.modify(|_, w| {
|
||||
w.exti0().pb0();
|
||||
w.exti1().pb1();
|
||||
w.exti2().pb2();
|
||||
w
|
||||
});
|
||||
self.syscfg.exticr3.modify(|_, w| {
|
||||
w.exti10().pb10();
|
||||
w.exti11().pb11();
|
||||
w
|
||||
});
|
||||
self.syscfg.exticr4.modify(|_, w| {
|
||||
w.exti13().pc13();
|
||||
w.exti14().pc14();
|
||||
w.exti15().pc15();
|
||||
w
|
||||
});
|
||||
|
||||
self.exti.imr.modify(|_, w| {
|
||||
w.mr0().unmasked();
|
||||
w.mr1().unmasked();
|
||||
w.mr2().unmasked();
|
||||
w.mr10().unmasked();
|
||||
w.mr11().unmasked();
|
||||
w.mr13().unmasked();
|
||||
w.mr14().unmasked();
|
||||
w.mr15().unmasked();
|
||||
w
|
||||
});
|
||||
|
||||
self.exti.rtsr.modify(|_, w| {
|
||||
w.tr0().enabled();
|
||||
w.tr1().enabled();
|
||||
w.tr2().enabled();
|
||||
w.tr10().enabled();
|
||||
w.tr11().enabled();
|
||||
w.tr13().enabled();
|
||||
w.tr14().enabled();
|
||||
w.tr15().enabled();
|
||||
w
|
||||
});
|
||||
|
||||
unsafe {
|
||||
cortex_m::peripheral::NVIC::unmask(Interrupt::EXTI0_1);
|
||||
cortex_m::peripheral::NVIC::unmask(Interrupt::EXTI2_3);
|
||||
cortex_m::peripheral::NVIC::unmask(Interrupt::EXTI4_15);
|
||||
}
|
||||
|
||||
cortex_m::peripheral::NVIC::unpend(Interrupt::EXTI0_1);
|
||||
cortex_m::peripheral::NVIC::unpend(Interrupt::EXTI2_3);
|
||||
cortex_m::peripheral::NVIC::unpend(Interrupt::EXTI4_15);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
struct Globals {
|
||||
syscfg: SYSCFG,
|
||||
exti: EXTI,
|
||||
/// Currently only used to ensure SysTick timer is set up correctly
|
||||
#[allow(dead_code)]
|
||||
delay: Delay,
|
||||
}
|
||||
|
||||
impl Globals {
|
||||
fn new(syscfg: SYSCFG, exti: EXTI, delay: Delay) -> Self {
|
||||
Self {
|
||||
syscfg,
|
||||
exti,
|
||||
delay,
|
||||
}
|
||||
}
|
||||
|
||||
fn setup_interrupts(&self, _cs: &CriticalSection) {
|
||||
self.syscfg.exticr1.modify(|_, w| {
|
||||
w.exti0().pb0();
|
||||
w.exti1().pb1();
|
||||
w.exti2().pb2();
|
||||
w
|
||||
});
|
||||
self.syscfg.exticr3.modify(|_, w| {
|
||||
w.exti10().pb10();
|
||||
w.exti11().pb11();
|
||||
w
|
||||
});
|
||||
self.syscfg.exticr4.modify(|_, w| {
|
||||
w.exti13().pc13();
|
||||
w.exti14().pc14();
|
||||
w.exti15().pc15();
|
||||
w
|
||||
});
|
||||
|
||||
self.exti.imr.modify(|_, w| {
|
||||
w.mr0().unmasked();
|
||||
w.mr1().unmasked();
|
||||
w.mr2().unmasked();
|
||||
w.mr10().unmasked();
|
||||
w.mr11().unmasked();
|
||||
w.mr13().unmasked();
|
||||
w.mr14().unmasked();
|
||||
w.mr15().unmasked();
|
||||
w
|
||||
});
|
||||
|
||||
self.exti.rtsr.modify(|_, w| {
|
||||
w.tr0().enabled();
|
||||
w.tr1().enabled();
|
||||
w.tr2().enabled();
|
||||
w.tr10().enabled();
|
||||
w.tr11().enabled();
|
||||
w.tr13().enabled();
|
||||
w.tr14().enabled();
|
||||
w.tr15().enabled();
|
||||
w
|
||||
});
|
||||
|
||||
unsafe {
|
||||
cortex_m::peripheral::NVIC::unmask(Interrupt::EXTI0_1);
|
||||
cortex_m::peripheral::NVIC::unmask(Interrupt::EXTI2_3);
|
||||
cortex_m::peripheral::NVIC::unmask(Interrupt::EXTI4_15);
|
||||
}
|
||||
|
||||
cortex_m::peripheral::NVIC::unpend(Interrupt::EXTI0_1);
|
||||
cortex_m::peripheral::NVIC::unpend(Interrupt::EXTI2_3);
|
||||
cortex_m::peripheral::NVIC::unpend(Interrupt::EXTI4_15);
|
||||
}
|
||||
}
|
||||
|
||||
#[interrupt]
|
||||
fn EXTI0_1() {
|
||||
cortex_m::interrupt::free(|cs| {
|
||||
if let Some(globals) = GLOBALS.borrow(cs).borrow().as_ref() {
|
||||
let pr = &globals.exti.pr;
|
||||
|
||||
if pr.read().pif0().is_pending() {
|
||||
pr.write(|w| w.pif0().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif1().is_pending() {
|
||||
pr.write(|w| w.pif1().set_bit());
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
fn EXTI0_1() {}
|
||||
|
||||
#[interrupt]
|
||||
fn EXTI2_3() {
|
||||
cortex_m::interrupt::free(|cs| {
|
||||
if let Some(globals) = GLOBALS.borrow(cs).borrow().as_ref() {
|
||||
let pr = &globals.exti.pr;
|
||||
|
||||
if pr.read().pif2().is_pending() {
|
||||
pr.write(|w| w.pif2().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif3().is_pending() {
|
||||
pr.write(|w| w.pif3().set_bit());
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
fn EXTI2_3() {}
|
||||
|
||||
#[interrupt]
|
||||
fn EXTI4_15() {
|
||||
cortex_m::interrupt::free(|cs| {
|
||||
if let Some(globals) = GLOBALS.borrow(cs).borrow().as_ref() {
|
||||
let pr = &globals.exti.pr;
|
||||
|
||||
if pr.read().pif4().is_pending() {
|
||||
pr.write(|w| w.pif4().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif5().is_pending() {
|
||||
pr.write(|w| w.pif5().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif6().is_pending() {
|
||||
pr.write(|w| w.pif6().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif7().is_pending() {
|
||||
pr.write(|w| w.pif7().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif8().is_pending() {
|
||||
pr.write(|w| w.pif8().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif9().is_pending() {
|
||||
pr.write(|w| w.pif9().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif10().is_pending() {
|
||||
pr.write(|w| w.pif10().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif11().is_pending() {
|
||||
pr.write(|w| w.pif11().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif12().is_pending() {
|
||||
pr.write(|w| w.pif12().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif13().is_pending() {
|
||||
pr.write(|w| w.pif13().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif14().is_pending() {
|
||||
pr.write(|w| w.pif14().set_bit());
|
||||
}
|
||||
|
||||
if pr.read().pif15().is_pending() {
|
||||
pr.write(|w| w.pif15().set_bit());
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
fn EXTI4_15() {}
|
||||
|
|
|
@ -8,8 +8,8 @@ use usbd_serial::SerialPort;
|
|||
/// pid.codes VID
|
||||
const VENDOR_ID: u16 = 0x1209;
|
||||
|
||||
/// pid.codes Test PID -- **do not use outside of testing!**
|
||||
/// *TODO: apply for unique PID once project is finished*
|
||||
/// pid.codes Test PID - do not use outside of testing!
|
||||
/// TODO: apply for unique PID once project is finished
|
||||
const PRODUCT_ID: u16 = 0x0006;
|
||||
|
||||
pub struct Usb<'a> {
|
||||
|
@ -19,14 +19,14 @@ pub struct Usb<'a> {
|
|||
|
||||
impl<'a> Usb<'a> {
|
||||
pub fn new(usb_bus: &'a UsbBusAllocator<UsbBusType>) -> Self {
|
||||
let serial = SerialPort::new(usb_bus);
|
||||
|
||||
let usb_dev = UsbDeviceBuilder::new(usb_bus, UsbVidPid(VENDOR_ID, PRODUCT_ID))
|
||||
.manufacturer("lujoga")
|
||||
.product("faderboard")
|
||||
.max_power(500)
|
||||
.build();
|
||||
|
||||
let serial = SerialPort::new(&usb_bus);
|
||||
|
||||
Usb { usb_dev, serial }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue