Hello ESP_Sprite,
Thank you for pointing out that 'C14' (in the aforementioned schematic) should be read as: "Don't place".
(I probably missed that because I was unfamiliar with the usage of "NC" for "NOSTUFF", teaches me to be more observant.)
It would seem I indeed have to "jump in the rabbit ...
Search found 4 matches
- Fri Jun 30, 2023 7:14 pm
- Forum: Hardware
- Topic: CP2102N and ESP32
- Replies: 6
- Views: 4517
- Tue Jun 27, 2023 6:11 pm
- Forum: Hardware
- Topic: CP2102N and ESP32
- Replies: 6
- Views: 4517
Re: CP2102N and ESP32
Hello ESP_Sprite, thank you for taking the time to answer my question.
However, I am still confused.
Maybe because I was too concise?
Then I will try to be more verbose this time.
In our project I am using an ESP32-wrover-e module that I would like to program over USB-C(2.0) from any computer ...
However, I am still confused.
Maybe because I was too concise?
Then I will try to be more verbose this time.
In our project I am using an ESP32-wrover-e module that I would like to program over USB-C(2.0) from any computer ...
- Sat Jun 24, 2023 8:50 pm
- Forum: General Discussion
- Topic: Sofware interrupt
- Replies: 4
- Views: 2240
Re: Sofware interrupt
The use of printf() in interrupt routines is something best avoided.
(since printf() may be a macro, a function, or something else that disables interrupts)
If you want to "printf()" something, then sprintf() to a (global) buffer first, and then printf the buffer somewhere outside of the interrupt ...
(since printf() may be a macro, a function, or something else that disables interrupts)
If you want to "printf()" something, then sprintf() to a (global) buffer first, and then printf the buffer somewhere outside of the interrupt ...
- Sat Jun 24, 2023 7:45 pm
- Forum: Hardware
- Topic: CP2102N and ESP32
- Replies: 6
- Views: 4517
CP2102N and ESP32
Hello,
Having studied the (reference) designs of the CP2102N based ESP32-devkits boards.
(with the transistors used for DTR, EN, RTS and IO0.)
ESP32_DEVKITS_20190621.pdf
was one of my sources, but a multiple of others share the same idea.
(or just copied and pasted it)
I'm confused as to how ...
Having studied the (reference) designs of the CP2102N based ESP32-devkits boards.
(with the transistors used for DTR, EN, RTS and IO0.)
ESP32_DEVKITS_20190621.pdf
was one of my sources, but a multiple of others share the same idea.
(or just copied and pasted it)
I'm confused as to how ...