Search found 7 matches
- Tue Apr 02, 2019 6:46 am
- Forum: ESP-IDF
- Topic: Sudden build problems
- Replies: 3
- Views: 4581
Re: Sudden build problems
Thanks solved the problem
- Thu Mar 28, 2019 3:59 pm
- Forum: ESP-IDF
- Topic: Sudden build problems
- Replies: 3
- Views: 4581
Re: Sudden build problems
Thanks, my college which have the problem just left, but I'll check with him.
But how can there be an environent variable set in a compleately clean msys32?
Does it pick up variables from Windows somewhere?
But how can there be an environent variable set in a compleately clean msys32?
Does it pick up variables from Windows somewhere?
- Thu Mar 28, 2019 11:14 am
- Forum: ESP-IDF
- Topic: Sudden build problems
- Replies: 3
- Views: 4581
Sudden build problems
Environment - IDF version: Current master and release/v3.2 - Build System: [Make] - Compiler version: (crosstool-NG crosstool-ng-1.22.0-80-g6c4433a5) 5.2.0 - Operating System: [Windows] Problem Description Suddenly building stopped working. We have tried checking out a compleately clean esp-idf and ...
- Mon Oct 09, 2017 2:30 pm
- Forum: Report Bugs
- Topic: esp_wifi_set_country() seems not working
- Replies: 3
- Views: 10193
Re: esp_wifi_set_country() seems not working
Try it out, they have pathched it https://github.com/espressif/esp-idf/issues/1004.
Haven't tried it myself yet.
Haven't tried it myself yet.
- Tue Sep 12, 2017 6:51 am
- Forum: ESP-IDF
- Topic: Getting extra byte 0xFF while configuring UART
- Replies: 17
- Views: 22538
Re: Getting extra byte 0xFF while configuring UART
Hi, Please include following solution into UART driver specific to uart_set_pin function to solve issue of extra byte 0xFF while configuring UART. if(tx_io_num >= 0) { PIN_FUNC_SELECT(GPIO_PIN_MUX_REG[tx_io_num], PIN_FUNC_GPIO); PIN_FUNC_SELECT(GPIO_PIN_MUX_REG[tx_io_num], PIN_FUNC_GPIO); gpio_set_...
- Mon Sep 11, 2017 2:11 pm
- Forum: ESP-IDF
- Topic: Need help regarding UART1 and UART2 communication for ESP32
- Replies: 33
- Views: 51743
Re: Need help regarding UART1 and UART2 communication for ESP32
Ritesh, you can look into HardwareSerial.cpp as well and see what happens when you start arduino Serial :) it's pretty straight forward. hi Me-no-dev, ok - UART runs in IDF environment :) btw: void checkForData() can we trigger this? or do we must create a task for lookup? txs! best wishes rudi ;-)...
- Mon Sep 11, 2017 12:51 pm
- Forum: ESP-IDF
- Topic: Getting extra byte 0xFF while configuring UART
- Replies: 17
- Views: 22538
Re: Getting extra byte 0xFF while configuring UART
I'm having the same problem, did you find a fix?