2023-05-15 11:25:02 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use defmt::*;
|
|
|
|
use embassy_executor::Spawner;
|
2023-05-26 10:56:55 +02:00
|
|
|
use embassy_stm32::ipcc::Config;
|
2023-05-15 11:25:02 +02:00
|
|
|
use embassy_stm32::tl_mbox::TlMbox;
|
2023-05-25 00:29:56 +02:00
|
|
|
use embassy_stm32::{bind_interrupts, tl_mbox};
|
2023-05-15 11:25:02 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
|
2023-05-25 00:29:56 +02:00
|
|
|
bind_interrupts!(struct Irqs{
|
|
|
|
IPCC_C1_RX => tl_mbox::ReceiveInterruptHandler;
|
|
|
|
IPCC_C1_TX => tl_mbox::TransmitInterruptHandler;
|
|
|
|
});
|
|
|
|
|
2023-05-15 11:25:02 +02:00
|
|
|
#[embassy_executor::main]
|
|
|
|
async fn main(_spawner: Spawner) {
|
|
|
|
/*
|
|
|
|
How to make this work:
|
|
|
|
|
|
|
|
- Obtain a NUCLEO-STM32WB55 from your preferred supplier.
|
|
|
|
- Download and Install STM32CubeProgrammer.
|
|
|
|
- Download stm32wb5x_FUS_fw.bin, stm32wb5x_BLE_Stack_full_fw.bin, and Release_Notes.html from
|
|
|
|
gh:STMicroelectronics/STM32CubeWB@2234d97/Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x
|
|
|
|
- Open STM32CubeProgrammer
|
|
|
|
- On the right-hand pane, click "firmware upgrade" to upgrade the st-link firmware.
|
|
|
|
- Once complete, click connect to connect to the device.
|
|
|
|
- On the left hand pane, click the RSS signal icon to open "Firmware Upgrade Services".
|
|
|
|
- In the Release_Notes.html, find the memory address that corresponds to your device for the stm32wb5x_FUS_fw.bin file
|
|
|
|
- Select that file, the memory address, "verify download", and then "Firmware Upgrade".
|
|
|
|
- Once complete, in the Release_Notes.html, find the memory address that corresponds to your device for the
|
|
|
|
stm32wb5x_BLE_Stack_full_fw.bin file. It should not be the same memory address.
|
|
|
|
- Select that file, the memory address, "verify download", and then "Firmware Upgrade".
|
2023-05-22 01:39:13 +02:00
|
|
|
- Select "Start Wireless Stack".
|
2023-05-15 11:25:02 +02:00
|
|
|
- Disconnect from the device.
|
|
|
|
- In the examples folder for stm32wb, modify the memory.x file to match your target device.
|
|
|
|
- Run this example.
|
|
|
|
|
|
|
|
Note: extended stack versions are not supported at this time. Do not attempt to install a stack with "extended" in the name.
|
|
|
|
*/
|
|
|
|
|
2023-05-26 10:56:55 +02:00
|
|
|
let _p = embassy_stm32::init(Default::default());
|
2023-05-15 11:25:02 +02:00
|
|
|
info!("Hello World!");
|
|
|
|
|
|
|
|
let config = Config::default();
|
2023-05-26 10:56:55 +02:00
|
|
|
let mbox = TlMbox::init(Irqs, config);
|
2023-05-15 11:25:02 +02:00
|
|
|
|
|
|
|
info!("waiting for coprocessor to boot");
|
|
|
|
let event_box = mbox.read().await;
|
|
|
|
|
|
|
|
let mut payload = [0u8; 6];
|
|
|
|
event_box.copy_into_slice(&mut payload).unwrap();
|
|
|
|
|
|
|
|
let event_packet = event_box.evt();
|
|
|
|
let kind = event_packet.evt_serial.kind;
|
|
|
|
|
|
|
|
// means recieved SYS event, which indicates in this case that the coprocessor is ready
|
|
|
|
if kind == 0x12 {
|
|
|
|
let code = event_packet.evt_serial.evt.evt_code;
|
|
|
|
let payload_len = event_packet.evt_serial.evt.payload_len;
|
|
|
|
|
|
|
|
info!(
|
|
|
|
"==> kind: {:#04x}, code: {:#04x}, payload_length: {}, payload: {:#04x}",
|
|
|
|
kind,
|
|
|
|
code,
|
|
|
|
payload_len,
|
|
|
|
payload[3..]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-05-26 10:56:55 +02:00
|
|
|
// initialize ble stack, does not return a response
|
|
|
|
mbox.shci_ble_init(Default::default());
|
2023-05-15 11:25:02 +02:00
|
|
|
|
|
|
|
info!("resetting BLE");
|
2023-05-26 10:56:55 +02:00
|
|
|
mbox.send_ble_cmd(&[0x01, 0x03, 0x0c, 0x00, 0x00]);
|
2023-05-15 11:25:02 +02:00
|
|
|
|
|
|
|
let event_box = mbox.read().await;
|
|
|
|
|
|
|
|
let mut payload = [0u8; 7];
|
|
|
|
event_box.copy_into_slice(&mut payload).unwrap();
|
|
|
|
|
|
|
|
let event_packet = event_box.evt();
|
|
|
|
let kind = event_packet.evt_serial.kind;
|
|
|
|
|
|
|
|
let code = event_packet.evt_serial.evt.evt_code;
|
|
|
|
let payload_len = event_packet.evt_serial.evt.payload_len;
|
|
|
|
|
|
|
|
info!(
|
|
|
|
"==> kind: {:#04x}, code: {:#04x}, payload_length: {}, payload: {:#04x}",
|
2023-05-26 10:56:55 +02:00
|
|
|
kind,
|
|
|
|
code,
|
|
|
|
payload_len,
|
|
|
|
payload[3..]
|
2023-05-15 11:25:02 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
loop {}
|
|
|
|
}
|