Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update examples to stm32-usbd v0.5 #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example-stm32f042k6/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2018"
[dependencies]
cortex-m = "0.6"
cortex-m-rt = "0.6"
stm32f0xx-hal = { version = "0.15.2", features = ["rt", "stm32f042"] }
stm32f0xx-hal = { version = "0.17", features = ["stm32f042", "stm32-usbd"] }
panic-semihosting = "0.5"
usb-device = "0.2.1"
usbd-serial = "0.1"
stm32-usbd = { version = "0.4.0", features = ["stm32f042xx"] }
stm32-usbd = { version = "0.5", features = ["ram_access_2x16"] }
11 changes: 7 additions & 4 deletions example-stm32f042k6/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extern crate panic_semihosting;

use cortex_m_rt::entry;
use stm32_usbd::UsbBus;
use stm32f0xx_hal::{prelude::*, stm32};
use stm32f0xx_hal::{prelude::*, stm32, usb::Peripheral};
use usb_device::prelude::*;
use usbd_serial::{SerialPort, USB_CLASS_CDC};

Expand Down Expand Up @@ -39,10 +39,13 @@ fn main() -> ! {

let gpioa = dp.GPIOA.split(&mut rcc);

let usb_dm = gpioa.pa11;
let usb_dp = gpioa.pa12;
let usb = Peripheral {
usb: dp.USB,
pin_dm: gpioa.pa11,
pin_dp: gpioa.pa12,
};

let usb_bus = UsbBus::new(dp.USB, (usb_dm, usb_dp));
let usb_bus = UsbBus::new(usb);

let mut serial = SerialPort::new(&usb_bus);

Expand Down