Search found 394 matches

by ESP_krzychb
Sat Apr 14, 2018 10:11 am
Forum: ESP-IDF
Topic: Configure GPIO4 as ADC Input
Replies: 5
Views: 7385

Re: Configure GPIO4 as ADC Input

GPIO12 is also one of dedicated JTAG pins.
If you plan to use JTAG then its operation will interfere with an application toggling DTR.
Apart from that I do not see issues with using GPIO12 as an output.
by ESP_krzychb
Fri Apr 13, 2018 2:31 pm
Forum: ESP-IDF
Topic: Configure GPIO4 as ADC Input
Replies: 5
Views: 7385

Re: Configure GPIO4 as ADC Input

Do you mean DTR (Data Terminal Ready) input to control serial communication? GPIO12 or MTDI is one of Strapping Pins and should be either pulled down or pulled up on power-on reset. External device connected to GPIO12 should not pull in opposite direction on power on reset, or ESP32 will likely fail...
by ESP_krzychb
Fri Apr 13, 2018 12:25 pm
Forum: ESP-IDF
Topic: Configure GPIO4 as ADC Input
Replies: 5
Views: 7385

Re: Configure GPIO4 as ADC Input

Hello kishan patel,

Yes, you can but there are some restrictions.
by ESP_krzychb
Thu Apr 12, 2018 1:44 pm
Forum: General Discussion
Topic: ESP_LOG(I/W/E) vs printf for debug
Replies: 6
Views: 20555

Re: ESP_LOG(I/W/E) vs printf for debug

Is this just a matter of preference, or is there a logical reason to use ESP_LOG(I/W/E) over "I've seen it done so that's why I do it" type mentality. Hi mikemoy, I think that for most of ad hoc debuging this it is a matter of preference with indication to use printf. ESP_LOG(I/W/E) are intended to...
by ESP_krzychb
Tue Apr 10, 2018 8:00 am
Forum: Hardware
Topic: Unable to flash ESP32-WROOM - Getting RAM errors
Replies: 7
Views: 9562

Re: Unable to flash ESP32-WROOM - Getting RAM errors

There is a 4.7uF and a 100nF capacitor on the power rails... I would also add bigger uF value decoupling capacitors following Espressif's reference designs, see ESP32-DevKitC Reference Design . The design contains 22uF and 100nF capacitors for the ESP32 module, not counting 22uF nearby on the outpu...
by ESP_krzychb
Mon Apr 02, 2018 7:22 pm
Forum: General Discussion
Topic: read ADC result will trigger other GPIO Pin's interrupt
Replies: 2
Views: 4975

Re: read ADC result will trigger other GPIO Pin's interrupt

Hi adherent,
adherent wrote:Any idea or hint will be highly appreciated!
Ref: https://github.com/espressif/esp-idf/issues/1096
by ESP_krzychb
Sun Mar 18, 2018 11:13 am
Forum: ESP32 Arduino
Topic: Advice needed for vibration analysis project comms.
Replies: 6
Views: 9348

Re: Advice needed for vibration analysis project comms.

Hi Steve, The data would comprise four arrays of 32768 Int numbers representing the voltages. These would be collected at rates up to 15000 samples per second. The STM32F103 doesn’t have the capacity to store this amount of data so it is sent directly to the PC via USB at 512000 bps. I don’t know if...
by ESP_krzychb
Sat Mar 17, 2018 12:43 pm
Forum: ESP32 Arduino
Topic: Advice needed for vibration analysis project comms.
Replies: 6
Views: 9348

Re: Advice needed for vibration analysis project comms.

Hi BaartCM, The code for this is here https://github.com/BaartCM/FFT-Analyser I have modified the code to work with the ESP32 and it is functioning fine. Nice project! If you like to make it internet enabled then you are in the right place :D Ideally, I see a hub like a Raspberry Pi connecting to se...
by ESP_krzychb
Tue Mar 13, 2018 10:25 am
Forum: Report Bugs
Topic: Different kind of symbol
Replies: 6
Views: 10346

Re: Different kind of symbol

Hi Archibald,

Indeed there is 'gamma' already declared in arduino-esp32, see https://github.com/espressif/arduino-es ... ath.h#L297
by ESP_krzychb
Thu Mar 08, 2018 2:43 pm
Forum: ESP32 Arduino
Topic: Failure with flashing esp-wrover-kit dev board under Arduino-esp32
Replies: 5
Views: 7731

Re: Failure with flashing esp-wrover-kit dev board under Arduino-esp32

1, copied esptool.py from esp/esp-idf/components/esptool_py/esptool to ~/Arduino/hardware/espressif/esp32/tools, and changed DEFAULT_PORT to /dev/ttyUSB1. Hi huaxiaozhong1 again :) Reading https://github.com/plerup/makeEspArduino#including-the-makefile it looks to me that you need to set UPLOAD_POR...