Search found 10 matches

by powerfeather
Wed Aug 21, 2024 11:35 pm
Forum: General Discussion
Topic: Plans for an ESP32-S3-MINI-N8R2?
Replies: 0
Views: 540

Plans for an ESP32-S3-MINI-N8R2?

There is a bare chip ESP32-S3-PICO-1-N8R2 that has in-package 2 MB SRAM and 8 MB flash. Are there plans of creating a MINI module out of it?
by powerfeather
Thu Jul 25, 2024 11:30 am
Forum: Hardware
Topic: Higher-than-expected ESP32-S3 Light Sleep Current
Replies: 3
Views: 907

Re: Higher-than-expected ESP32-S3 Light Sleep Current

In the documentation, it says it's ok to power down flash using: esp_sleep_pd_config(ESP_PD_DOMAIN_VDDSDIO, ESP_PD_OPTION_OFF); If the rtc timer is not set as wake source *or* the sleep timer is long enough. Lifted verbatim from the docs: Calling esp_sleep_pd_config(ESP_PD_DOMAIN_VDDSDIO, ESP_PD_OPT...
by powerfeather
Thu Jul 25, 2024 11:00 am
Forum: Hardware
Topic: Higher-than-expected ESP32-S3 Light Sleep Current
Replies: 3
Views: 907

Re: Higher-than-expected ESP32-S3 Light Sleep Current

Another update, I think I've managed to reach the theoretical light sleep current mentioned in the datasheet: https://i.ibb.co/Kb5TH3n/lowest-light-sleep.png This was achieved in the following conditions: - kconfig: enable PM, enable tickless idle, enable flash power down - configure pm with auto li...
by powerfeather
Thu Jul 25, 2024 2:33 am
Forum: Hardware
Topic: Higher-than-expected ESP32-S3 Light Sleep Current
Replies: 3
Views: 907

Re: Higher-than-expected ESP32-S3 Light Sleep Current

Ok, this seems to be related to some current leakage to the flash. If flash *is* powered down, the light sleep current remains at ~700 uA.
Though, is the leakage current expected to be that high (difference of ~1.1 mA), even with the workaround Kconfig option enabled?
by powerfeather
Wed Jul 24, 2024 11:24 pm
Forum: Hardware
Topic: Higher-than-expected ESP32-S3 Light Sleep Current
Replies: 3
Views: 907

Higher-than-expected ESP32-S3 Light Sleep Current

Hi, I'm looking into my custom board's light sleep current consumption. I'm expecting well below sub-1mA, given ESP32-S3 240 uA light sleep current (claimed on the datasheet) + quiescent current draw from components on-board which I estimate to just be a few hundred uA. I've used the light sleep exa...
by powerfeather
Thu May 02, 2024 8:03 am
Forum: Showcase
Topic: ESP32-S3 PowerFeather: Low-power, solar-capable, Li-ion/LiPo-powered, Feather-compatible development board
Replies: 3
Views: 6841

Re: ESP32-S3 PowerFeather: Low-power, solar-capable, Li-ion/LiPo-powered, Feather-compatible development board

Since the release of ESP32-S3 PowerFeather I’ve been working on a demo web app that lets users explore some of the features of ESP32-S3 PowerFeather, which I recently got to a decent state: https://i.ibb.co/WWMsGxT/charging-current.jpg The web app is served from the ESP32-S3 PowerFeather (acting as ...
by powerfeather
Thu Apr 04, 2024 2:54 pm
Forum: Hardware
Topic: ESP32 IoT Application Manager Battery
Replies: 1
Views: 9744

Re: ESP32 IoT Application Manager Battery

Hello, it's been a few months. But perhaps you might be interested in ESP32-S3 PowerFeather (https://powerfeather.dev/)?
Full disclosure, I'm the creator of the board.
by powerfeather
Thu Apr 04, 2024 2:48 pm
Forum: Showcase
Topic: ESP32-S3 PowerFeather: Low-power, solar-capable, Li-ion/LiPo-powered, Feather-compatible development board
Replies: 3
Views: 6841

ESP32-S3 PowerFeather: Low-power, solar-capable, Li-ion/LiPo-powered, Feather-compatible development board

Hello all, I want to introduce ESP32-S3 PowerFeather, a dev board that should make it a little easier to create solar + Li-ion/LiPo powered projects! It uses a charger IC that's smarter than most other similar boards: Texas Instruments BQ25628E; and also has an on-board LC709204F fuel gauge. Deep-sl...
by powerfeather
Tue Oct 17, 2023 2:11 am
Forum: Hardware
Topic: RTC_NOINIT_ATTR and USB Serial/JTAG Controller vs External USB<->Serial
Replies: 1
Views: 2402

RTC_NOINIT_ATTR and USB Serial/JTAG Controller vs External USB<->Serial

I have found a bizarre behavior, and I was wondering if anybody can reproduce this on ESP32-S3-Devkit-C-1 v1.0 and ESP-IDF v4.4.6. I built and flashed an application with the following main code: void app_main(void) { static RTC_NOINIT_ATTR uint32_t test; printf("test: 0x%08x\n", test); test = 0xdea...