Search found 3 matches

by vvb333007
Fri Sep 13, 2024 3:45 am
Forum: ESP-IDF
Topic: Writing IRAM
Replies: 1
Views: 271

Writing IRAM

Hello!

Can I configure MMU in a such way so I can write to a IRAM? What I want is to enable writing to the instruction ram, and then inject some binary code at the beggining of FreeRTOS task creation function to hook onto it.

Is this doable?
by vvb333007
Thu Aug 01, 2024 6:51 am
Forum: Hardware
Topic: Choosing resistor values for a voltage divider ESP32-C3 analogue input
Replies: 3
Views: 2744

Re: Choosing resistor values for a voltage divider ESP32-C3 analogue input

imply just use one 2M resistor between the battery and the analog pin. Yes many people do like this. However the discharge curve of cell batteries are very flat until they are almost discharged. So unlikely you can get something like 90%, 75%, 52%.. It will be sort of 100%, 100%, 100%, and then sud...
by vvb333007
Wed Jul 31, 2024 6:03 am
Forum: ESP32 Arduino
Topic: ESP32 Dual Core: Periodic Task Interruption
Replies: 4
Views: 1026

Re: ESP32 Dual Core: Periodic Task Interruption

Your Task2 (protocol handling) is not alone on Core#1 . Arduino also runs on Core#1. Try to switch cores for your protocol generation, let the protocol part to be on Core#0. Just an idea.