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
Olá, @alvarolb
The ThingerTinyGSM.h file needs to be fixed so that it can compile with FreeRTOS. The correction proposal below is correct:
ThingerTinyGSM.h
Here (link)
class ThingerTinyGSM : public ThingerClient #ifdef THINGER_FREE_RTOS ,public ThingerESP32FreeRTOS #endif { public: ThingerTinyGSM(const char* user, const char* device, const char* device_credential, Stream& serial) : ThingerClient(client_, user, device, device_credential), #ifdef THINGER_FREE_RTOS ThingerESP32FreeRTOS(static_cast<ThingerClient&>(*this)), #endif modem_(serial), client_(modem_) {
The text was updated successfully, but these errors were encountered:
Hello, @alvarolb
Taking advantage of the library update, could you check this suggested correction?
Sorry, something went wrong.
Any news on this fix? thanks
No branches or pull requests
Olá, @alvarolb
The
ThingerTinyGSM.h
file needs to be fixed so that it can compile with FreeRTOS.The correction proposal below is correct:
Here (link)
The text was updated successfully, but these errors were encountered: