Search found 36 matches

by somesh
Wed Jun 03, 2020 5:03 pm
Forum: General Discussion
Topic: Anyone get static IP assignment working for wifi?
Replies: 11
Views: 22119

Re: Anyone get static IP assignment working for wifi?

Hi,

I have set static ip but esp32 is not in showing in AP( Router or hotspot) or hostname showing as unknown.
any guess? why?
by somesh
Thu May 21, 2020 6:37 am
Forum: General Discussion
Topic: Network Status
Replies: 0
Views: 1821

Network Status

Hello Everyone,

Is there any provision in esp-idf to know network status(WiFi) of the device which is connected to specific AP? (good or bad or in percentage)
I am using esp-idf-v3.3(LTS).
by somesh
Tue May 05, 2020 12:24 pm
Forum: General Discussion
Topic: Static IP configuration
Replies: 2
Views: 3603

Re: Static IP configuration

Hi, I am setting static ip but data is not sent over internet to the server. It is working on local server. what is the problem? I am using following tcpip_adapter_dhcpc_stop(TCPIP_ADAPTER_IF_STA); tcpip_adapter_ip_info_t static_IP_info; inet_pton(AF_INET, IP_Config.ip, &static_IP_info.ip); inet_pto...
by somesh
Tue Feb 11, 2020 1:02 pm
Forum: ESP-IDF
Topic: ESP32 How to turn off automatic log of system output
Replies: 9
Views: 24760

Re: ESP32 How to turn off automatic log of system output

ESP_Sprite wrote:
Tue Feb 11, 2020 12:23 pm
That is not a log, that is a crash dump. 'Easiest' way to get rid of this is to make sure there are no errors in your code ;) but you can also change if this is printed out in menuconfig: iirc components -> esp-32-specific -> panic handler behaviour -> set to 'silent reboot'.
Ok. Thanks.
by somesh
Tue Feb 11, 2020 7:50 am
Forum: ESP-IDF
Topic: ESP32 How to turn off automatic log of system output
Replies: 9
Views: 24760

Re: ESP32 How to turn off automatic log of system output

1. Disabling ROM bootloader output: pull down GPIO15. 2. Disabling 2nd stage bootloader output: make menuconfig, go to "Bootloader config" and set "Bootloader log verbosity" to "No output" 3. Application: make menuconfig, go to "Component config", "Log output", set "Default log verbosity" to "No ou...
by somesh
Thu Feb 06, 2020 7:37 am
Forum: ESP-IDF
Topic: Send bytes over UART
Replies: 3
Views: 5417

Re: Send bytes over UART

NIghthunter101 wrote:
Thu Feb 06, 2020 5:22 am
uart_write_bytes needs a char not uint8_t. Is there a different function I should be using or do I have to make something new?
you can use char also.
by somesh
Thu Feb 06, 2020 5:06 am
Forum: ESP-IDF
Topic: Send bytes over UART
Replies: 3
Views: 5417

Re: Send bytes over UART

I'm trying to control a TMC2009 driver over UART and I need to send the commands as bytes but I only seem to be able to send characters. What do I need to change to get it sending bytes not characters? I've got the following code for the UART, int sendData(const char* logName, const char* data) { c...
by somesh
Tue Jan 21, 2020 7:11 am
Forum: General Discussion
Topic: Static IP configuration
Replies: 2
Views: 3603

Static IP configuration

Hello,

I am setting static ip in esp. I have given provision to change ip through web server. but if I configured wrong ip then how to recover esp to change ip to correct one.
please suggest.
by somesh
Thu Dec 19, 2019 5:25 am
Forum: General Discussion
Topic: slip library
Replies: 7
Views: 7667

Re: SLIP LIBRAIRY

Note that that file only handles SLIP framing, not integration into any TCP/IP environment. If you want to shuttle IP packets back and forth on a network level, you may be better off using PPP, as LWIP supports that. Mod note: seems your caps lock was accidentally on while typing the title of this ...
by somesh
Thu Dec 19, 2019 5:19 am
Forum: General Discussion
Topic: slip library
Replies: 7
Views: 7667

Re: SLIP LIBRAIRY

Shall I look into my crystal ball to see; 1) how you tried or 2) which error you received? ;) Why not just copy the file and associated headers. You will need to understand the ESP make system of course. 1) #include "slip.h" or #include "flasher_stub/slip.h" 2) No such file or directory I think thi...