Search found 2 matches

by radoslav.iliev
Thu Apr 02, 2020 8:34 am
Forum: ESP-IDF
Topic: ESP Wrover KIT UART problem,Rx not working
Replies: 0
Views: 2407

ESP Wrover KIT UART problem,Rx not working

Hello everyone, I use the sample code from the uart_echo example, exactly: #define ECHO_TEST_TXD (GPIO_NUM_1) #define ECHO_TEST_RXD (GPIO_NUM_3) #define ECHO_TEST_RTS (UART_PIN_NO_CHANGE) #define ECHO_TEST_CTS (UART_PIN_NO_CHANGE) #define BUF_SIZE (256) #define RESP_SIZE (128) void main() { uart_con...
by radoslav.iliev
Wed Mar 25, 2020 3:35 pm
Forum: ESP-IDF
Topic: HTTP Server - need of URI parser
Replies: 0
Views: 1297

HTTP Server - need of URI parser

Hello everyone, Now the httpd_find_uri_handler() function checks does the URI responds to the query linear, because it compares them with strncmp() . I need to do some-like apache based tree structure of them, so, using of strtok() for this is mandatory. The question is: In which function I have to ...