You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1000% correct I was getting very low power output... wasted a lot of time almost went to another library.
Then after changing the time to uint32_t tout = (uint32_t)(timeoutInMs * (1.0/0.015625)); all of a sudden everything worked as intended.
Here's some images for visual aid:
Wimpy signal with uint32_t tout = (uint32_t)(timeoutInMs * 0.015625);
Chad signal with uint32_t tout = (uint32_t)(timeoutInMs * (1.0/0.015625));
The Timeout is incorrectly calculated in SetTx meaning that the transmission fails on longer or slow messages, see 5f63e8a for details.
Many thanks.
The text was updated successfully, but these errors were encountered: