22
22
23
23
#if CONFIG_IDF_TARGET_ESP32H2
24
24
#define WAKEUP_GPIO GPIO_NUM_7 // Only RTC IO are allowed
25
+ #define TARGET_FREQ 32
25
26
#else
26
27
#define WAKEUP_GPIO GPIO_NUM_4 // Only RTC IO are allowed
28
+ #define TARGET_FREQ 40
27
29
#endif
28
30
29
- RTC_DATA_ATTR int bootCount = 0 ;
31
+ RTC_DATA_ATTR int boot_count = 0 ;
32
+ uint32_t orig_freq = 0 ;
30
33
31
34
void print_wakeup_reason () {
32
35
esp_sleep_wakeup_cause_t wakeup_reason;
@@ -86,17 +89,17 @@ void setup_uart() {
86
89
esp_sleep_enable_uart_wakeup (UART_NUM_0);
87
90
}
88
91
89
-
90
-
91
92
void setup () {
92
93
Serial.begin (115200 );
93
94
while (!Serial) {
94
95
delay (10 );
95
96
}
96
97
98
+ orig_freq = getCpuFrequencyMhz ();
99
+
97
100
// Increment boot number and print it every reboot
98
- ++bootCount ;
99
- Serial.println (" Boot number: " + String (bootCount ));
101
+ boot_count++ ;
102
+ Serial.println (" Boot number: " + String (boot_count ));
100
103
101
104
// Print the wakeup reason for ESP32
102
105
print_wakeup_reason ();
@@ -138,6 +141,10 @@ void loop() {
138
141
} else if (command == " timer_light" ) {
139
142
// Test timer wakeup from light sleep
140
143
setup_timer ();
144
+ } else if (command == " timer_freq_light" ) {
145
+ // Test timer wakeup from light sleep while changing CPU frequency
146
+ setCpuFrequencyMhz (TARGET_FREQ);
147
+ setup_timer ();
141
148
} else if (command == " touchpad_light" ) {
142
149
// Test touchpad wakeup from light sleep
143
150
setup_touchpad ();
@@ -163,5 +170,6 @@ void loop() {
163
170
print_wakeup_reason ();
164
171
Serial.flush ();
165
172
gpio_hold_dis (WAKEUP_GPIO);
173
+ setCpuFrequencyMhz (orig_freq);
166
174
}
167
175
}
0 commit comments