SSL Issue when trying to append values using FreeRTOS. #40
-
I am getting this error when trying to append the values. Can anyone help me? Is there a way to manually close or restart the connection within the code? I am using ESP32C3 Board with Arduino IDE v2.3.2. I am trying to implement FreeRTOS-based tasks to connect to Wi-Fi, get the time and data, process it and then send it to Google Sheets. Any Leads to why I am getting this error would be greatly appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 18 replies
-
If you set the server or root CA certificate, that certificate is expired. You have to provide a new certificate. If you don't know how, you should not use |
Beta Was this translation helpful? Give feedback.
I don't know what the problem is but,
Instead of this approach, I created a separate task within case
process_POST_sensor
which would append the value of the sensor and then calledvTaskDelete(NULL)
. Somehow this approach works and I can add all the values to the sheets. Not sure why the previous one wasn't working