Search found 141 matches

by martinayotte
Sun Nov 27, 2016 10:23 pm
Forum: Hardware
Topic: ESP32 support Power Over Ethernet (POE) or not
Replies: 7
Views: 14214

Re: ESP32 support Power Over Ethernet (POE) or not

Maybe this could help :
Image
Also, some DC-DC chips are specially designed for that, such Linear LTC4267 :
http://cds.linear.com/docs/en/datasheet/4267fc.pdf
by martinayotte
Sun Nov 27, 2016 10:06 pm
Forum: General Discussion
Topic: Unable to flash ESP32
Replies: 12
Views: 35367

Re: Unable to flash ESP32

Do you mind explaining why I should not connect the USB UART's 3.3V to ESP32 though?
The USB-Serial is self powered from the USB line. Therefore it's 3.3V is an output, and your ESP32 has already it own power supply.
Shorting 2 power supplies together could cause damage.
by martinayotte
Mon Nov 21, 2016 10:39 pm
Forum: General Discussion
Topic: Does the Esp32 support hardware based I2C or software bit-bang based I2C ?
Replies: 14
Views: 28847

Re: Does the Esp32 support hardware based I2C or software bit-bang based I2C ?

1st of December which is only a couple of weeks away
You probably means "couple of days" ... ;)
by martinayotte
Fri Oct 28, 2016 1:58 pm
Forum: ESP-IDF
Topic: How to use gpio_isr_register?
Replies: 46
Views: 63257

Re: How to use gpio_isr_register?

What is the question exactly ?
Because all states are present in gpio_intr_status, you simply needs to verify each bits as needed.
by martinayotte
Thu Oct 27, 2016 3:42 pm
Forum: ESP-IDF
Topic: How to use gpio_isr_register?
Replies: 46
Views: 63257

Re: How to use gpio_isr_register?

BTW, folks and @rudi, using "switch/case" with numeric values for each interrupt is not a good practice. If both interrupts come at the same time, your code won't handle any, since gpio_intr_status will be set to 393216. You should use bitmask as "if (gpio_intr_status & 0x02000) {}" and "if (gpio_in...
by martinayotte
Fri Sep 30, 2016 7:23 pm
Forum: ESP-IDF
Topic: [Solved] Reading character input from the serial port
Replies: 13
Views: 51470

Re: Reading character input from the serial port

Maybe we can use the ROM function in the mean time :

int uart_rx_one_char(uint8_t *ch);
by martinayotte
Fri Sep 30, 2016 6:48 pm
Forum: ESP-IDF
Topic: [Solved] Recipes for debugging exceptions ...
Replies: 11
Views: 78396

Re: [Solved] Recipes for debugging exceptions ...

+1 or even +2
Thanks, ESP_Sprite !
;)
by martinayotte
Fri Feb 05, 2016 8:08 pm
Forum: General Discussion
Topic: What will be expected date for release of ESP32 Modules in Market ?
Replies: 10
Views: 26824

Re: What will be expected date for release of ESP32 Modules in Market ?

The ESP32 isn't in production yet, therefore you can't purchase some. Those guys who have one became part of Beta campaign, limited to 200 modules, back in Nov 2015. I've tried to become part of those, they even ask me to provide my phone number, but they actually ran out of modules to quickly and I...
by martinayotte
Thu Jan 07, 2016 3:22 pm
Forum: General Discussion
Topic: Anyone interested in Arduino Environment?
Replies: 50
Views: 91416

Re: Anyone interested in Arduino Environment?

Congrats to me-no-dev !!! ;)
by martinayotte
Tue Dec 29, 2015 6:07 am
Forum: Hardware
Topic: INPUT state of Open Drain OUTPUT
Replies: 7
Views: 20505

Re: INPUT state of Open Drain OUTPUT

Yes, in other words, the ONLY time the pin is acting as an output is when the SDA/SCL needs to be bring to LOW, in any other states, the pins should be back to Input mode, leaving the pullups doing their job, also allowing the Slaves to do such things like "clock stretching". (Unfortunately, I can't...