Search found 7 matches

by iisfaq
Sat Feb 15, 2025 8:55 pm
Forum: ESP32 Arduino
Topic: ESP32 - DFROBOT Firebeetle 2 ESP32-C6 - boot loop
Replies: 3
Views: 2772

Re: ESP32 - DFROBOT Firebeetle 2 ESP32-C6 - boot loop

I decided to try out ESP-IDF and my device works fine there. So something to do with the Arduino IDE/Code?

Chris
by iisfaq
Sat Feb 15, 2025 7:30 pm
Forum: ESP32 Arduino
Topic: ESP32 - DFROBOT Firebeetle 2 ESP32-C6 - boot loop
Replies: 3
Views: 2772

Re: ESP32 - DFROBOT Firebeetle 2 ESP32-C6 - boot loop

I have gone back to the blink sketch and I see that it works.
But the ascii table example which writes to the serial port does not work. No output.
But it programs the device on the same serial port so it must be working?

This is all very odd.

I have even tried the same on another device (same ...
by iisfaq
Sat Feb 15, 2025 7:15 pm
Forum: ESP32 Arduino
Topic: ESP32 - DFROBOT Firebeetle 2 ESP32-C6 - boot loop
Replies: 3
Views: 2772

ESP32 - DFROBOT Firebeetle 2 ESP32-C6 - boot loop

I have a bare bones DFROBOT FIRE BEETLE ESP32-C6 that seems to go into a boot loop

Rebooting...
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0xc (SW_CPU),boot:0xc (SPI_FAST_FLASH_BOOT)
Saved PC:0x4001975a
SPIWP:0xee
mode:DIO, clock div:2
load:0x4086c410,len:0xc24
load:0x4086e610,len:0x2708

Then ...
by iisfaq
Sun Apr 14, 2024 3:52 am
Forum: ESP32 Arduino
Topic: ESP32-C6 Low Power hanging device?
Replies: 14
Views: 9378

Re: ESP32-C6 Low Power hanging device?


How can esp_wifi be installed/linked in Arduino IDE? I found no hint how to do that.


I would do this

Go to File - Preferences
In the settings tab at the bottom there should be a title called "Additional board manager Urls" enter the following

http://download.dfrobot.top/FireBeetle/package ...
by iisfaq
Sat Apr 13, 2024 1:57 am
Forum: ESP32 Arduino
Topic: ESP32-C6 Low Power hanging device?
Replies: 14
Views: 9378

Re: ESP32-C6 Low Power hanging device?

This is my Preferences / Additional Boards

https://ibb.co/7tm34Rp

http://download.dfrobot.top/FireBeetle/package_DFRobot_index.json
https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json

I believe you need to have the 3.0.0.alpha3 or later library. By default I think when you ...
by iisfaq
Sat Mar 16, 2024 8:04 am
Forum: ESP32 Arduino
Topic: ESP32-C6 Low Power hanging device?
Replies: 14
Views: 9378

Re: ESP32-C6 Low Power hanging device?

I found that if I put a delay after digitalWrite(LED_BUILTIN, HIGH); like delay(1000) it is working. But the esp32-c6 has some sort of broken/limited usb support. When it goes to light sleep the usb chip is disabled but it does not get reenabled after coming out of light sleep. Hence usb serial ...
by iisfaq
Fri Mar 15, 2024 11:15 pm
Forum: ESP32 Arduino
Topic: ESP32-C6 Low Power hanging device?
Replies: 14
Views: 9378

ESP32-C6 Low Power hanging device?

I bought a DFROBOT FireBeetle ESP32-c6 device and I did some testing with light power saving. So far it just hangs the device.

My code is quite simple

[Codebox]
#include <esp_wifi.h>
#include "driver/uart.h"

#define TIMER_WAKEUP_TIME_US (2 * 1000 * 1000)


void GoToLightSleep() {
if ...

Go to advanced search