|
Hi, First of all, thanks for this great lib and your work. But, is there a way to have the modulation parameters of the module on receiver and sender sides. Like print them in the serial monitor while sending (or receiving packets). I have tried to use the getModem() function: RadioLib/src/modules/SX128x/SX128x.cpp Lines 772 to 784 in f00395b But I did not succeed. So is there a function to print the radio module parameters for example just before displaying the sending (or receiving) message in the serial link ? Thanks in advance, and sorry if my question is already answered somewhere, but I did not find anything (either in the docs and github disccusions) |
Replies: 1 comment 1 reply
|
This is not really something the library supports, and the reason for that is pretty simple - setting the configuration is fully within the control of the user. The library keeps track of some of the parameters by necessity, but you as the user have all of them as you were the one to pu them in the |
This is not really something the library supports, and the reason for that is pretty simple - setting the configuration is fully within the control of the user. The library keeps track of some of the parameters by necessity, but you as the user have all of them as you were the one to pu them in the
beginmethod. The library will never change the parameters without your input. So it is up to you to print them out when needed.