2020-06-02 01:49 AM
Hi,
I tried to follow the workshop to start developping with my P NUCLEO WB55.
The only thing is that the used firmware is 1.0.0. or something close...
I'm pretty sure the 1.7.0 is introducing new cube ide improvement... but i'm really having hard time making it works...
It seems that the generated code is not fully working directly. I'm struggling trying to figure out what's missing or what's wrong with just a simple custom ble service.
I think i found that (just like the old workshop), it is needed to start the sequencer in the main.c file and insert lines in the stm32wbxx_it.c file...
But how are we supposed to figure this out by ourself ?
Best regards,
2020-08-31 03:39 AM
I would like to see this answered as well. I am trying to replicate the BLE P2PServer and P2PClient present in the examples by using the BLE profiles provided and I can't make them work.
Any help on how to create a simple project for BLE using the server and clients profiles are welcome.
2020-09-03 10:20 AM
Same here (now using package 1.8.0). It is hard to figure out how make the whole thing to work. What is generated from MX, for example, does not include much of the sequencer. Tutorials are very welcome.
2020-09-03 07:50 PM
I'm facing the same problems, could anyone plz share tutorial or documents to implement BLE with STM32WB, thanks a lot!!!
2020-10-04 06:19 AM
+1
Still need it.
2020-10-05 03:27 AM
Do you set the external clocks?, and did you set the interrupts in stm32wbxx_it.c
void IPCC_C1_TX_IRQHandler(void)
{
HW_IPCC_Tx_Handler();
return;
}
void IPCC_C1_RX_IRQHandler(void)
{
HW_IPCC_Rx_Handler();
return;
}
2020-10-12 02:19 AM
I'll have to jump in the list of those who would like to see an updated tutorial for STM32CubeIDE.
Thanks