Thx.
The only one that explicitly mentions rev.1 seems to be the wrover board.
Sadly, this doesn't fit my project very well, I plan on using a touch screen display.
Cheers
Hans
Search found 62 matches
- Mon Jul 24, 2017 12:07 am
- Forum: General Discussion
- Topic: Looking for a ready made board with revision 1 silicon
- Replies: 5
- Views: 11172
- Fri Jul 21, 2017 4:53 pm
- Forum: General Discussion
- Topic: Looking for a ready made board with revision 1 silicon
- Replies: 5
- Views: 11172
Looking for a ready made board with revision 1 silicon
Hi all
I'm wondering if there's any breadboard compatible rev.1 ("new silicon") dev boards out in the wild right now.
If there is, I'd be happy to know a source.
Cheers
Hans
I'm wondering if there's any breadboard compatible rev.1 ("new silicon") dev boards out in the wild right now.
If there is, I'd be happy to know a source.
Cheers
Hans
- Fri Apr 28, 2017 5:37 pm
- Forum: ESP-IDF
- Topic: GPIO gives Multiple Interrupt events for single interrupt generation
- Replies: 17
- Views: 31886
Re: GPIO gives Multiple Interrupt events for single interrupt generation
You could do a quick check directly in the ISR if the last event has been too recent, and ignore the new interrrupt in this case.
- Fri Apr 28, 2017 5:29 pm
- Forum: General Discussion
- Topic: Urgent Need for Pulse Width Measurement, Register/Hardware Descriptions Would Work
- Replies: 13
- Views: 28317
Re: Urgent Need for Pulse Width Measurement, Register/Hardware Descriptions Would Work
Hi Jesse,
what resolution do you need for your pulse width measurement?
what resolution do you need for your pulse width measurement?
- Thu Apr 20, 2017 10:35 pm
- Forum: ESP-IDF
- Topic: GPIO conflicts with I2S interrupt
- Replies: 4
- Views: 10461
Re: GPIO conflicts with I2S interrupt
You sent the address of gpio_num instead of it's value to the event queue.
I'm pretty sure that's not what you wanted
I'm pretty sure that's not what you wanted
- Mon Apr 17, 2017 11:03 pm
- Forum: ESP32 Arduino
- Topic: Can't get ESP32 WROOM to work with any example
- Replies: 20
- Views: 41353
Re: Can't get ESP32 WROOM to work with any example
Have you tried setting the upload baud rate to 115200?
- Wed Apr 12, 2017 9:48 pm
- Forum: General Discussion
- Topic: Hi , can anyone say , how to write the values to the specific register through I2C..??
- Replies: 6
- Views: 13032
Re: Hi , can anyone say , how to write the values to the specific register through I2C..??
There's an arduino core available for the esp32, if you want to use the arduino libraries.
https://github.com/espressif/arduino-esp32
https://github.com/espressif/arduino-esp32
- Thu Apr 06, 2017 10:29 pm
- Forum: Report Bugs
- Topic: I2C SCL frequency 10% less than it should be at 400kHz
- Replies: 55
- Views: 104542
Re: I2C SCL frequency 10% less than it should be at 400kHz
Things are slowly starting to improve in the I2C department. While trying to figure out how to make long (>32 bytes) transfers work, I found there's a nicer way to send long frames. I2_CMD_WRITE will actually take a byte_num paramater larger than 32 in FIFO mode. All you have to do is keep the FIFO ...
- Wed Apr 05, 2017 1:25 am
- Forum: General Discussion
- Topic: ESP32 - GPIO speed lower than expected
- Replies: 10
- Views: 112828
Re: ESP32 - GPIO speed lower than expected
Hi Alizame, as far as I understand the w1ts/w1tc registers, you don't have to read them out to set/reset GPIO bits. Try this version: void toggle(void *pvParameter) { printf("toggle called.\n"); portDISABLE_INTERRUPTS(); while (1) { GPIO.out_w1ts = (1 << GPIO_NUM_23); __asm__ __volatile__("nop;nop;n...
- Wed Apr 05, 2017 1:04 am
- Forum: Report Bugs
- Topic: I2C SCL frequency 10% less than it should be at 400kHz
- Replies: 55
- Views: 104542
Re: I2C SCL frequency 10% less than it should be at 400kHz
I'll try to update my arduino installation over the weekend. Guess I'm already up to date w.r.t the I2C part right now though. My changes didn't make the error rate any worse or better, I'm back at the fast version. There might be some EMI issues with my setup. The wiring is rather messy and spans 2...