Search found 23 matches

by zhivko
Mon May 08, 2017 3:40 pm
Forum: General Discussion
Topic: Loading image via JTAG adapter
Replies: 4
Views: 10562

Re: Loading image via JTAG adapter

Flashing over JTAG would be really neat. Using 2 cables is not fancy ;).
@ESP_Angus: do you see this could be implemented in near future? I think it would help the platform to become mature and allow users to easier catch all this possible nasty bugs thata could happen during devel cycle.
by zhivko
Wed Dec 07, 2016 9:58 am
Forum: General Discussion
Topic: chip reset problem
Replies: 8
Views: 13007

Re: chip reset problem

We know wifi is critical for working - couldn't we somehow dedicate wifi to run on first core and user program on another?
Is rtos mixing first and second core for all task including user tasks and wifi tasks?
by zhivko
Wed Nov 23, 2016 9:24 pm
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

Why they mark GPIO11 when it is flash reserved? Ughh... So basically all this SD_ pins fall under same flash operation pins that user could not use since then flash would be useless? SHD/SD2 17 GPIO9, SD_DATA2, SPIHD, HS1_DATA2, U1RXD SWP/SD3 18 GPIO10, SD_DATA3, SPIWP, HS1_DATA3, U1TXD SCS/CMD 19 G...
by zhivko
Wed Nov 23, 2016 6:34 pm
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

[SOLVED] wroom32 schematics

Oh that's a shame - I just followed pinout picture and pin11 is indeed shared for flash and gpio... But if gpio could not be used - why put it on this image? https://www.google.si/url?sa=i&rct=j&q=&esrc=s&source=images&cd=&cad=rja&uact=8&ved=0ahUKEwi3__z9wb_QAhWH1xQKHVDxCY0QjRwIBw&url=https%3A%2F%2F...
by zhivko
Sun Nov 20, 2016 9:25 pm
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

Another question - I added led to my board to pin no 11.
I uploaded sketch, and I barely see led light instead of bright flashes - When I measured voltage on gpio11 - it shows 1.57V.

So what's wrong with using:

Code: Select all

int ledPin = 11;
in blink example?
by zhivko
Sun Nov 20, 2016 9:17 pm
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

Turned out I had faulty usb - serial ttl adapter. I picked new one and here is scope trace of io0 and en line: IMG_20161120_215540.jpg and result from arduino ide: Sketch uses 102,069 bytes (9%) of program storage space. Maximum is 1,044,464 bytes. Global variables use 9,160 bytes (3%) of dynamic me...
by zhivko
Sun Nov 20, 2016 5:26 pm
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

Unfortunately I do not have another FTDI - only bus pirate (http://dangerousprototypes.com/docs/Bus_Pirate) - maybe I could use it. But I think main problem here is that EN doesn't go fully to 0V to make reset - however I see io0 to go to 0V and then back to 3.3V - so this makes me believe something...
by zhivko
Sun Nov 20, 2016 10:17 am
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

Oh and regarding rts and cts disabling in miniterm - I tried various combinations for:

Code: Select all

esp32.serial.disableDTR=false
esp32.serial.disableRTS=false
in c:\Program Files (x86)\Arduino\hardware\espressif\esp32\boards.txt file.
by zhivko
Sun Nov 20, 2016 10:07 am
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

I checked official devc from espressif and there is "Auto program" table in schematics it says: dtr=0, rts=1 --> en==1, io0=0 so this is what I am getting, but still in arduino esp32 - I get: Global variables use 9,160 bytes (3%) of dynamic memory, leaving 285,752 bytes for local variables. Maximum ...
by zhivko
Sat Nov 19, 2016 11:31 pm
Forum: General Discussion
Topic: wroom32 schematics
Replies: 15
Views: 24844

Re: wroom32 schematics

OK, after all I decided to use NPN transistors, but have problem with flashing esp32. It seems that EN line does not fully transition from 3.3V to 0V (check scope screenshot of yellow line that represents EN). However blue line that represents IO0 does a full transition from 3.3V to 0V - so any idea...