Arduino-Library
Arduino-Library copied to clipboard
ThingerTinyGSM.h does not compile with FreeRTOS
Olá, @alvarolb
The ThingerTinyGSM.h file needs to be fixed so that it can compile with FreeRTOS.
The correction proposal below is correct:
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_)
{
Hello, @alvarolb
Taking advantage of the library update, could you check this suggested correction?
Hello, @alvarolb
Any news on this fix? thanks
It would be an opportunity to fix this bug in version 2.40.1 The solution is in the post above.