Open
Description
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_)
{
Metadata
Metadata
Assignees
Labels
No labels