Search found 6 matches

by mustray
Sat Jun 22, 2019 9:14 am
Forum: General Discussion
Topic: Problem with ESP32 TCP Server
Replies: 3
Views: 4460

Re: Problem with ESP32 TCP Server

?
by mustray
Thu Jun 20, 2019 12:04 pm
Forum: General Discussion
Topic: Problem with ESP32 TCP Server
Replies: 3
Views: 4460

Re: Problem with ESP32 TCP Server

@mike Thanks for your concern. Here is the code i have written listener = socket(addr_family, SOCK_STREAM, ip_protocol); bind(listener, (struct sockaddr *)&destAddr, sizeof(destAddr)); if (listen(listener, -1) == -1) { ESP_LOGI(TAG_TCP, "Listen ERROR! "); } while(1) { if(total_clients_accepted < 6) ...
by mustray
Wed Jun 19, 2019 5:57 am
Forum: General Discussion
Topic: Problem with ESP32 TCP Server
Replies: 3
Views: 4460

Problem with ESP32 TCP Server

Hi All, I am working with esp32 in station mode as a TCP server. I want 6 TCP server to run simultaneously. But the problem is i see 7 tcp clients connect through the hercules terminal. In listen() i have kept the backlog value as -1. But still the 7 client connects. In my while loop am only calling...
by mustray
Thu May 23, 2019 9:00 am
Forum: General Discussion
Topic: Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled. Loading the .bin file OTA
Replies: 0
Views: 5559

Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled. Loading the .bin file OTA

Hi, This is the error i am getting while loading the .bin file in the esp OTA. The certificates are correct. I am able to get the url from the s3 but when i do a esp_https_ota(), i get the below error. Could any body tell me the posssible reason. "current firmware version (0.1) is lower than the ava...
by mustray
Thu Jan 17, 2019 9:33 am
Forum: General Discussion
Topic: ESP32 AWS IOT Data Missed while receiving data from broker
Replies: 0
Views: 1897

ESP32 AWS IOT Data Missed while receiving data from broker

Hi, I am working on ESP32 IDF-MQTT_3_1_1,using the subscribe_publish example modified to accept data via second uart. While publishing data (using Qos=0 or Qos=1) to the aws iot host, out of every 100 packets 4-10 packets are missed. Similarly when am receiving data on the subscribed topic, data is ...
by mustray
Wed Dec 19, 2018 12:38 pm
Forum: ESP-IDF
Topic: Esp32 Aws Iot Data Missed while publishing and receiving
Replies: 0
Views: 2123

Esp32 Aws Iot Data Missed while publishing and receiving

Hi, I am working on ESP32 IDF-MQTT_3_1_1,using the subscribe_publish example modified to accept data via second uart.While publishing data (using Qos=0 or Qos=1) to the aws iot host, out of every 100 packets 4-10 packets are missed. Similarly when am receiving data on the subscribed topic, data is m...