We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
Thanks very much for the radiolib example code. If you wish to correct it, (among others) I get the following minor compile error:
\horusbinary_radiolib\FSK4_Mod.ino:103:11: error: return-statement with a value, in function returning 'void' [-fpermissive] return(n);
And as we see it is indeed an error: https://github.com/projecthorus/horusbinary_radiolib/blob/main/FSK4_Mod.ino#L97
Correcting it to: "size_t fsk4_write(PhysicalLayer* phy, uint8_t* buff, size_t len){" solves that one.
Thanks very much Kev
The text was updated successfully, but these errors were encountered:
Apparently you can't call micros() or yield() the way they were done either, I assume these are things that have changed overtime in Arduino?
Module::micros() now needs to be just micros() and the same for yield().
Cheers Kev
Sorry, something went wrong.
No branches or pull requests
Hi
Thanks very much for the radiolib example code. If you wish to correct it, (among others) I get the following minor compile error:
\horusbinary_radiolib\FSK4_Mod.ino:103:11: error: return-statement with a value, in function returning 'void' [-fpermissive]
return(n);
And as we see it is indeed an error: https://github.com/projecthorus/horusbinary_radiolib/blob/main/FSK4_Mod.ino#L97
Correcting it to: "size_t fsk4_write(PhysicalLayer* phy, uint8_t* buff, size_t len){" solves that one.
Thanks very much
Kev
The text was updated successfully, but these errors were encountered: