Search found 1 match

by jtleniger
Sun Jan 16, 2022 9:40 pm
Forum: ESP-IDF
Topic: RTC slow memory appears to be cleared after ULP wakeup
Replies: 0
Views: 2346

RTC slow memory appears to be cleared after ULP wakeup

I'm using the ulpcc compiler to generate assembly for the ULP coprocessor. I have two arrays declared: unsigned int rain_readings[MAX_READING]; unsigned int wind_readings[MAX_READING]; The ulpcc compiler creates globals from these in assembly: .global wind_readings wind_readings: .space 120 .global ...