Search found 296 matches

by urbanze
Thu Dec 28, 2017 11:42 am
Forum: General Discussion
Topic: Questions about libraries
Replies: 9
Views: 13092

Re: Questions about libraries

I declare all the libraries I can use someday, so visual studio will always have the functions in Auto-Complete. This is very good because the libraries are only compiled into the code when using any, so declare them all and do not use them, it does not interfere with the final size of the file. Cau...
by urbanze
Wed Dec 27, 2017 11:10 am
Forum: General Discussion
Topic: Question about Performance of mysys32 on Win10 and flash tool
Replies: 5
Views: 7171

Re: Question about Performance of mysys32 on Win10 and flash tool

Try "make flash -j20" :lol:, or the number of cores +1 (if quad-core, make flash -j5). This parameter can help you.

Another way to flash binaries to ESP32: Flash download Tool. Flash download tool can upload binaries to esp without "make", you just need know adresses and .bin files to upload.
by urbanze
Mon Dec 25, 2017 8:24 pm
Forum: General Discussion
Topic: ESP32 - Pin14 LED
Replies: 5
Views: 12574

Re: ESP32 - Pin14 LED

Wow, thank you for your efforts! You were right! It works if i set gpio_14 to low and enable hold before going to deep sleep. After waking up, i have to disable the hold so that the LED works again. That's fine for me, thanks a lot! Yes! you need to disable hold to use pin after wake up. Good luck ...
by urbanze
Mon Dec 25, 2017 7:49 pm
Forum: General Discussion
Topic: ESP32 - Pin14 LED
Replies: 5
Views: 12574

Re: ESP32 - Pin14 LED

You need to put GPIO LOW and after HOLD this GPIO, like this: Before, try this two codes and see difference! Note: You can use any function to set output HIGH, in this case I will use Arduino functions. Note 2: GPIO 14 has an LED to show hold feature working. pinMode(14, OUTPUT); digitalWrite(14, 1)...
by urbanze
Mon Dec 25, 2017 4:08 pm
Forum: General Discussion
Topic: BigNumber (GMP)?
Replies: 4
Views: 6137

Re: BigNumber (GMP)?

Note: error in "write_string", I tried several values in the last parameter of this function, some give "store prohibited" error or nothing happens. I would also like to know what to put in the last parameter. The olen parameter (last parameter) can't be null. A hin that the StoreProhibted error is...
by urbanze
Sun Dec 24, 2017 11:31 pm
Forum: General Discussion
Topic: ESP32 - Pin14 LED
Replies: 5
Views: 12574

Re: ESP32 - Pin14 LED

See RTC HOLD PAD feature, I think this can help you.
by urbanze
Sun Dec 24, 2017 5:06 pm
Forum: ESP32 Arduino
Topic: Direct IO Port Manipulation
Replies: 7
Views: 41666

Re: Direct IO Port Manipulation

You can use REG_WRITE macro, defined in soc.h. In this site, show how to blink an LED with registers like GPIO_OUT_W1TS_REG.

Note: Translate from (Portuguese (BR)) to English or any.
https://portal.vidadesilicio.com.br/man ... res-esp32/
by urbanze
Sat Dec 23, 2017 6:36 pm
Forum: ESP-IDF
Topic: Programming in C++
Replies: 48
Views: 110533

Re: Programming in C++

It's been a while since this discussion and it's time to ask if the "bugs / bugs" have been corrected, if it ever existed ... I currently use ESP_IDF with Arduino component, I can use both Arduino and IDF libraries freely, and to this day I have not come across any "problems" regarding using C++ (ma...
by urbanze
Sat Dec 23, 2017 1:40 pm
Forum: General Discussion
Topic: ESPTool uploading .bin files
Replies: 3
Views: 12614

Re: ESPTool uploading .bin files

In the MENUCONFIG settings, "QIO" is selected, however, in the "MAKE", "DIO" is displayed.

The photo above was the "QIO" test that did not work, I now tested it with "DIO" and it worked! Strange but working this good, thank you! Hope this helps other people too!
by urbanze
Sat Dec 23, 2017 11:32 am
Forum: General Discussion
Topic: ESPTool uploading .bin files
Replies: 3
Views: 12614

Re: ESPTool uploading .bin files

When you will use just make command you will find all informations you need. Files name with path also start address for each file. Simple and efficient command, thank you for showing it. I did the tests and it still did not work, I really thought it would work :( See that I put all options accordi...