cancel
Showing results for 
Search instead for 
Did you mean: 

Hi, i use two STM32L072 with lora, i launch the PingPong project, i would send and receive one message from a broad to a second. i can't pick out a function that return the value received. what can i do?

MHMallek
Associate II
 
1 ACCEPTED SOLUTION

Accepted Solutions

The radio layer does a call back to OnRxDone()

void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr );

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

View solution in original post

2 REPLIES 2

The radio layer does a call back to OnRxDone()

void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr );

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

thanks , it works :D