How to transfer a data array via LoRa with PingPong singlecore example?
Hello, I'm using the SubGhz_Phy_PingPong example to transfer data via Lora from a NUCLEO stm32WL to another, but I can't figure out how I can send a data array in the main.c file to the other board.
Following the example, it has the main calling the MX_SubGHz_Phy_Process() function, that's in the app_subghz_phy.c file. However, the code that occurs the transaction between boards is in the subghz_phy_app.c, in the PingPong_Process() function.
How do I take the array that I want from main, and send it all the way to that last function to send it?