Hello
I cannot find the functions available in the ESP32-C6 ROM—corresponding to the function addresses listed in the `esp32c6.rom.libgcc.ld` file—within the documentation.
For example, I would like to know what the function `__ledf2 = 0x40000948;` does and how to call it (what parameters are required?).
Thanks.
documentation functions ROM esp32-c6
-
MicroController
- Posts: 2683
- Joined: Mon Oct 17, 2022 7:38 pm
- Location: Europe, Germany
Re: documentation functions ROM esp32-c6
https://gcc.gnu.org/onlinedocs/gcc-14.2 ... tines.htmlI would like to know what the function `__ledf2 = 0x40000948;` does and how to call it
In C, you invoke it like this:
Code: Select all
bool f(double a, double b) {
return a <= b;
}
-
watchdog40
- Posts: 9
- Joined: Fri Jun 26, 2026 2:20 pm
Who is online
Users browsing this forum: Bing [Bot], Google [Bot] and 2 guests