Hello,
I work with a sx1262 and based my code on the SWL2001 project.
I have an issue with the Rx1 window.
In stmc_real.c/smtc_real_get_rx_window_parameters(…), when I keep as is, below code, JOIN doesn’t work.
*rx_window_symb =
MIN(MAX(((*rx_timeout_symb_in_ms * 1000) / tsymbol_us), MIN_RX_WINDOW_SYMB), MAX_RX_WINDOW_SYMB);
*rx_timeout_preamble_locked_in_ms = 3000;
The work around consists in defining those variable as below :
*rx_window_symb = 0;
*rx_timeout_preamble_locked_in_ms = 10000;
Once JOIN is done former parameters work well.
Do you have any clue where it comes from?
Sincerely yours,
Jean