Search found 5 matches
- Mon Nov 13, 2023 5:05 am
- Forum: General Discussion
- Topic: ESP32-C3 RF power
- Replies: 0
- Views: 657
ESP32-C3 RF power
Hello. I'm in the process of submitting a product for an RF test that used ESP32-C3-MINI-1U for regulatory approval. I only use BLE communication without Wi-Fi. There is a self-declare field that asks for the RF nominal power and RF burst power in "... dBm ± ... dB" format. Per the datasheet, which ...
- Tue Sep 26, 2023 2:48 pm
- Forum: General Discussion
- Topic: Fast digital read
- Replies: 3
- Views: 3232
Re: Fast digital read
Thanks all for the information, really helpful.
I'm proceeding with GPIO.in method, and also REG_READ(GPIO_IN_REG) is giving more or less the same performance
I'm proceeding with GPIO.in method, and also REG_READ(GPIO_IN_REG) is giving more or less the same performance
- Fri Sep 22, 2023 4:46 pm
- Forum: General Discussion
- Topic: Fast digital read
- Replies: 3
- Views: 3232
Fast digital read
Currently, I'm using GPIO.out method to get a fast digital write operation. gpio_config_t io_output_control; io_output_control.pin_bit_mask = (1 << PIN_OUT_0) | (1 << PIN_OUT_1) | (1 << PIN_OUT_2) | (1 << PIN_OUT_3); io_output_control.mode = GPIO_MODE_OUTPUT; gpio_config(&io_output_control); GPIO.ou...
- Mon Jun 13, 2022 1:23 pm
- Forum: Hardware
- Topic: ESP32-S3 input only pin?
- Replies: 5
- Views: 4662
Re: ESP32-S3 input only pin?
Alright, thanks for the confirmation.
- Sun Jun 12, 2022 3:00 pm
- Forum: Hardware
- Topic: ESP32-S3 input only pin?
- Replies: 5
- Views: 4662
ESP32-S3 input only pin?
The S3 docs mentioned that GPIO34-39 is input only pins. I know it's applicable to ESP32, but is it also true for S3? I just realize that I already have a custom board that used that pin as SPI port (GPIO35-38 = MISO, SCK, MOSI, CS) and it works just fine. I just need confirmation.
Thank you.
Thank you.