Search found 2344 matches

by ESP_Angus
Tue Sep 04, 2018 2:04 am
Forum: ESP32 Arduino
Topic: How to cancel the Interrupts Stack?
Replies: 6
Views: 9454

Re: How to cancel the Interrupts Stack?

Interrupt latency on the ESP32 is a little higher than ESP8266, although there are also a lot of other variables which can effect interrupt timing. Without seeing and debugging the full code it's hard to tell what the problem might be. Regarding SoftwareSerial, did you know that ESP32 has 3 hardware...
by ESP_Angus
Tue Sep 04, 2018 2:02 am
Forum: Hardware
Topic: No bootable app partitions with external flash when booting in QIO, but will not build for DIO
Replies: 2
Views: 3846

Re: No bootable app partitions with external flash when booting in QIO, but will not build for DIO

However, I know this board will work in DIO, but when I make menuconfig and save the config and flash, it boots as QIO. Edit: make clean then repeating fixed it. Will leave post up in case anyone else has same problem changing between QIO and DIO. That's quite strange! Where you flashing with "make...
by ESP_Angus
Mon Sep 03, 2018 9:42 am
Forum: ESP32 Arduino
Topic: How to cancel the Interrupts Stack?
Replies: 6
Views: 9454

Re: How to cancel the Interrupts Stack?

Sorry, I don't understand the question. Can you please clarify a few things: - What exactly is connected to the pin you have the interrupt attached to? - What exactly do you expect to happen? (ie what action do you take, and what do you expect to see the code do.) - What is currently happening? (ie ...
by ESP_Angus
Mon Sep 03, 2018 8:27 am
Forum: ESP32 Arduino
Topic: Very high stack usage with FreeRTOS and Eclipse-Arduino
Replies: 5
Views: 7642

Re: Very high stack usage with FreeRTOS and Eclipse-Arduino

As chegewara says, the result of uxTaskGetStackHighWaterMark() is the minimum amount of free stack space for the lifetime of the task. Larger values == less stack used. A difference between ESP-IDF and vanilla FreeRTOS is that stack sizes are represented in bytes, not words. So there's no need to mu...
by ESP_Angus
Mon Sep 03, 2018 4:30 am
Forum: ESP-IDF
Topic: esp-idf The following Python requirements are not satisfied: future>=0.16.0
Replies: 27
Views: 56256

Re: esp-idf The following Python requirements are not satisfied: future>=0.16.0

Hi gigijoe, The Pypi server now requires HTTPS, which very old versions of pip do not use. You can work around this situation by running: pip install --index-url=https://pypi.python.org/simple/ -r requirements.txt ( as suggested here .) Please note that Ubuntu 12.04 has been officially End Of Life s...
by ESP_Angus
Mon Sep 03, 2018 4:15 am
Forum: ESP-IDF
Topic: ESP32 pulse counter speed (max frequency)
Replies: 2
Views: 10183

Re: ESP32 pulse counter speed (max frequency)

Hi recently, With the input filter disabled, the PCNT module should be able to count up to a 40MHz input clock (half the 80MHz APB frequency). I'm not sure why this specification isn't listed in the datasheet or the TRM. Do I understand that what you need to do is count the number of cycles from the...
by ESP_Angus
Mon Sep 03, 2018 2:08 am
Forum: General Discussion
Topic: project.mk check python dependencies
Replies: 3
Views: 5659

Re: project.mk check python dependencies

Hi Adham, Can you please post the complete output from make? ESP-IDF recently added some python dependencies and built-in dependency checking, so this step is designed to print information about missing Python packages and a command to run in order to install them. However, it's possible that it's n...
by ESP_Angus
Mon Sep 03, 2018 2:06 am
Forum: General Discussion
Topic: ESP32 Secure Boot - Your code only runs on your own hardware?
Replies: 10
Views: 14870

Re: ESP32 Secure Boot - Your code only runs on your own hardware?

Thanks for your response. Just wondering if we distribute encrypted firmware for serial flashing (no OTA, Wifi will be off on this device), would that be ok? Do you need to flash in the field updates, or only once in the factory? If only once, the default Secure Boot & Flash Encryption will be enou...
by ESP_Angus
Mon Sep 03, 2018 2:02 am
Forum: ESP32 Arduino
Topic: Very high stack usage with FreeRTOS and Eclipse-Arduino
Replies: 5
Views: 7642

Re: Very high stack usage with FreeRTOS and Eclipse-Arduino

Hi RA5040,

I'm unsure what you mean by "Eclipse-Arduino". Can you post some examples of the functions you are measuring stack usage for, please?


Angus
by ESP_Angus
Thu Aug 30, 2018 10:03 am
Forum: ESP-IDF
Topic: Adding folder s to ESP-IDF template project
Replies: 8
Views: 15363

Re: Adding folder s to ESP-IDF template project

What's the contents of your component CMakeLists.txt file? You'll need a line like this:

Code: Select all

set(COMPONENT_ADD_INCLUDEDIRS ".")
before the "register_component()" line, so that the build system knows that you want this directory added to the include path.