2022-03-09 01:34:35 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use core::mem;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
2022-04-02 22:35:03 +02:00
|
|
|
use defmt::{info, panic};
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_executor::Spawner;
|
2022-09-22 16:48:35 +02:00
|
|
|
use embassy_futures::join::join;
|
2023-03-05 22:36:53 +01:00
|
|
|
use embassy_nrf::usb::vbus_detect::{HardwareVbusDetect, VbusDetect};
|
|
|
|
use embassy_nrf::usb::{Driver, Instance};
|
|
|
|
use embassy_nrf::{bind_interrupts, pac, peripherals, usb};
|
2022-09-26 13:00:21 +02:00
|
|
|
use embassy_usb::class::cdc_acm::{CdcAcmClass, State};
|
2022-04-06 04:04:11 +02:00
|
|
|
use embassy_usb::driver::EndpointError;
|
2022-04-16 02:17:24 +02:00
|
|
|
use embassy_usb::{Builder, Config};
|
2022-06-16 08:08:58 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2022-03-09 01:34:35 +01:00
|
|
|
|
2023-03-05 22:36:53 +01:00
|
|
|
bind_interrupts!(struct Irqs {
|
|
|
|
USBD => usb::InterruptHandler<peripherals::USBD>;
|
|
|
|
POWER_CLOCK => usb::vbus_detect::InterruptHandler;
|
|
|
|
});
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::main]
|
2022-08-17 18:49:55 +02:00
|
|
|
async fn main(_spawner: Spawner) {
|
|
|
|
let p = embassy_nrf::init(Default::default());
|
2022-03-09 01:34:35 +01:00
|
|
|
let clock: pac::CLOCK = unsafe { mem::transmute(()) };
|
2022-06-15 04:17:04 +02:00
|
|
|
|
2022-03-09 01:34:35 +01:00
|
|
|
info!("Enabling ext hfosc...");
|
|
|
|
clock.tasks_hfclkstart.write(|w| unsafe { w.bits(1) });
|
|
|
|
while clock.events_hfclkstarted.read().bits() != 1 {}
|
|
|
|
|
2022-03-10 01:10:53 +01:00
|
|
|
// Create the driver, from the HAL.
|
2023-03-05 22:36:53 +01:00
|
|
|
let driver = Driver::new(p.USBD, Irqs, HardwareVbusDetect::new(Irqs));
|
2022-03-10 01:10:53 +01:00
|
|
|
|
|
|
|
// Create embassy-usb Config
|
2022-04-24 22:46:45 +02:00
|
|
|
let mut config = Config::new(0xc0de, 0xcafe);
|
|
|
|
config.manufacturer = Some("Embassy");
|
|
|
|
config.product = Some("USB-serial example");
|
|
|
|
config.serial_number = Some("12345678");
|
|
|
|
config.max_power = 100;
|
|
|
|
config.max_packet_size_0 = 64;
|
2022-03-10 01:10:53 +01:00
|
|
|
|
2023-05-08 23:25:01 +02:00
|
|
|
// Required for windows compatibility.
|
2022-05-12 07:59:33 +02:00
|
|
|
// https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.1/kconfig/CONFIG_CDC_ACM_IAD.html#help
|
|
|
|
config.device_class = 0xEF;
|
|
|
|
config.device_sub_class = 0x02;
|
|
|
|
config.device_protocol = 0x01;
|
|
|
|
config.composite_with_iads = true;
|
|
|
|
|
2022-03-10 01:10:53 +01:00
|
|
|
// Create embassy-usb DeviceBuilder using the driver and config.
|
|
|
|
// It needs some buffers for building the descriptors.
|
2022-03-09 01:34:35 +01:00
|
|
|
let mut device_descriptor = [0; 256];
|
|
|
|
let mut config_descriptor = [0; 256];
|
|
|
|
let mut bos_descriptor = [0; 256];
|
2023-03-05 22:36:53 +01:00
|
|
|
let mut msos_descriptor = [0; 256];
|
2022-05-09 02:07:48 +02:00
|
|
|
let mut control_buf = [0; 64];
|
2022-03-28 02:20:01 +02:00
|
|
|
|
|
|
|
let mut state = State::new();
|
|
|
|
|
2022-04-16 02:17:24 +02:00
|
|
|
let mut builder = Builder::new(
|
2022-03-09 01:34:35 +01:00
|
|
|
driver,
|
|
|
|
config,
|
|
|
|
&mut device_descriptor,
|
|
|
|
&mut config_descriptor,
|
|
|
|
&mut bos_descriptor,
|
2023-03-05 22:36:53 +01:00
|
|
|
&mut msos_descriptor,
|
2022-03-29 21:09:24 +02:00
|
|
|
&mut control_buf,
|
2022-03-09 01:34:35 +01:00
|
|
|
);
|
|
|
|
|
2022-03-10 01:10:53 +01:00
|
|
|
// Create classes on the builder.
|
2022-03-28 02:20:01 +02:00
|
|
|
let mut class = CdcAcmClass::new(&mut builder, &mut state, 64);
|
2022-03-09 01:34:35 +01:00
|
|
|
|
2022-03-10 01:10:53 +01:00
|
|
|
// Build the builder.
|
2022-06-16 08:08:58 +02:00
|
|
|
let mut usb = builder.build();
|
2022-03-09 23:06:27 +01:00
|
|
|
|
2022-03-10 01:10:53 +01:00
|
|
|
// Run the USB device.
|
2022-03-30 02:16:34 +02:00
|
|
|
let usb_fut = usb.run();
|
2022-03-10 01:10:53 +01:00
|
|
|
|
2022-03-30 02:16:34 +02:00
|
|
|
// Do stuff with the class!
|
|
|
|
let echo_fut = async {
|
2022-03-09 23:06:27 +01:00
|
|
|
loop {
|
2022-04-02 22:35:03 +02:00
|
|
|
class.wait_connection().await;
|
|
|
|
info!("Connected");
|
|
|
|
let _ = echo(&mut class).await;
|
|
|
|
info!("Disconnected");
|
2022-03-10 01:05:33 +01:00
|
|
|
}
|
|
|
|
};
|
2022-03-09 23:06:27 +01:00
|
|
|
|
2022-03-10 01:10:53 +01:00
|
|
|
// Run everything concurrently.
|
|
|
|
// If we had made everything `'static` above instead, we could do this using separate tasks instead.
|
2022-03-30 02:16:34 +02:00
|
|
|
join(usb_fut, echo_fut).await;
|
2022-03-09 01:34:35 +01:00
|
|
|
}
|
2022-04-02 22:35:03 +02:00
|
|
|
|
|
|
|
struct Disconnected {}
|
|
|
|
|
2022-04-06 04:04:11 +02:00
|
|
|
impl From<EndpointError> for Disconnected {
|
|
|
|
fn from(val: EndpointError) -> Self {
|
2022-04-02 22:35:03 +02:00
|
|
|
match val {
|
2022-04-06 04:04:11 +02:00
|
|
|
EndpointError::BufferOverflow => panic!("Buffer overflow"),
|
|
|
|
EndpointError::Disabled => Disconnected {},
|
2022-04-02 22:35:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-01 00:48:33 +01:00
|
|
|
async fn echo<'d, T: Instance + 'd, P: VbusDetect + 'd>(
|
2022-07-09 08:40:10 +02:00
|
|
|
class: &mut CdcAcmClass<'d, Driver<'d, T, P>>,
|
|
|
|
) -> Result<(), Disconnected> {
|
2022-04-02 22:35:03 +02:00
|
|
|
let mut buf = [0; 64];
|
|
|
|
loop {
|
|
|
|
let n = class.read_packet(&mut buf).await?;
|
|
|
|
let data = &buf[..n];
|
|
|
|
info!("data: {:x}", data);
|
|
|
|
class.write_packet(data).await?;
|
|
|
|
}
|
|
|
|
}
|