Search found 6 matches

by grayefx
Mon Dec 23, 2019 6:33 pm
Forum: ESP-IDF
Topic: Send JSON String over ESPNOW
Replies: 1
Views: 3634

Send JSON String over ESPNOW

Hello I'm trying to send a simple string "HelloWorld" over ESPNOW (i really want to send a complete JSON but this is a test). Master says that send the message OK. Slave recieve the message but only the first 4 chars "Hell", so is missing "oWorld" I read the documentation and it says that max is 250...
by grayefx
Thu Oct 03, 2019 8:41 pm
Forum: ESP-IDF
Topic: FreeRTOS Crash on core 1
Replies: 1
Views: 2991

Re: FreeRTOS Crash on core 1

I answer to myself:

2 Actions was needed:

1.-Increase the usStackDepth for the FreeRTOS task
2.-In menuconfig-> Component config - > ESP32-specific : increase "Inter-processor call (IPC) task stack size"
by grayefx
Thu Oct 03, 2019 2:48 pm
Forum: ESP-IDF
Topic: FreeRTOS Crash on core 1
Replies: 1
Views: 2991

FreeRTOS Crash on core 1

Hello IDF Team I have a trouble with the usage of the second core with esp-idf: Board : esp32 v0 esp-idf version : 3.3 (Last stable update) Problem: 1.- In code esp32 gets reconfigured with an SSID and its Password set by an application 2.- Next, do a measurement and then it send it to a server by H...
by grayefx
Wed Feb 13, 2019 2:25 pm
Forum: ESP-IDF
Topic: ESP32 Not see networks in turkey
Replies: 5
Views: 5763

ESP32 Not see networks in turkey

Hi friends! I have a big trouble with esp32 I develop a system based on esp32 in mexico, basically scan the networks to show it on application and works really good here in mexico: wifi_scan_config_t scan_config = { .ssid = 0, .bssid = 0, .channel = 0, .show_hidden = true }; I send the devices to tu...
by grayefx
Mon Dec 10, 2018 3:05 pm
Forum: ESP-IDF
Topic: Send base64 by url
Replies: 3
Views: 4279

Re: Send base64 by url

Tested "\0" and not work u.u :(
by grayefx
Sun Dec 09, 2018 8:49 pm
Forum: ESP-IDF
Topic: Send base64 by url
Replies: 3
Views: 4279

Send base64 by url

Hi, this is my first post here. First of all, sorry for my english. I have a problem: I have a server pointing to raspberry server wich expects a JSON object. When i pass parameters directly to raspberry server, there is no problem, it recive fine, but when i pass the parameters redirecting there is...