Skip to content

Commit 0a5fa9b

Browse files
committed
new tests
1 parent 70786dc commit 0a5fa9b

File tree

6 files changed

+162
-0
lines changed

6 files changed

+162
-0
lines changed

tests/validation/cpu/ci.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"platforms": {
3+
"qemu": false
4+
}
5+
}

tests/validation/cpu/cpu.ino

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/* CPU test
2+
*
3+
* Tests miscellaneous CPU functions like changing the CPU frequency, checking the CPU frequency,
4+
* reading the CPU temperature, etc.
5+
*/
6+
7+
#include <Arduino.h>
8+
#include <unity.h>
9+
10+
/* Utility global variables */
11+
12+
/* Test functions */
13+
14+
#if SOC_TEMP_SENSOR_SUPPORTED
15+
void get_cpu_temperature() {
16+
float temp = temperatureRead();
17+
log_d("CPU temperature: %f", temp);
18+
TEST_ASSERT_FLOAT_IS_NOT_NAN(temp);
19+
TEST_ASSERT_FLOAT_WITHIN(40.0, 30.0, temp);
20+
}
21+
#endif
22+
23+
/* Main functions */
24+
25+
void setup() {
26+
UNITY_BEGIN();
27+
28+
#if SOC_TEMP_SENSOR_SUPPORTED
29+
RUN_TEST(get_cpu_temperature);
30+
#endif
31+
32+
UNITY_END();
33+
}
34+
35+
void loop() {}

tests/validation/cpu/test_cpu.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_cpu(dut):
2+
dut.expect_unity_test_output(timeout=120)

tests/validation/deep_sleep/ci.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"platforms": {
3+
"qemu": false
4+
}
5+
}
+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
/*
2+
* This sketch tests the deep sleep functionality of the ESP32
3+
*/
4+
5+
#include <Arduino.h>
6+
7+
// Timer
8+
#define uS_TO_S_FACTOR 1000000ULL /* Conversion factor for micro seconds to seconds */
9+
#define TIME_TO_SLEEP 5 /* Time ESP32 will go to sleep (in seconds) */
10+
11+
// Touchpad
12+
#if CONFIG_IDF_TARGET_ESP32
13+
#define THRESHOLD 1000 /* Greater the value, more the sensitivity */
14+
#else
15+
#define THRESHOLD 0 /* Lower the value, more the sensitivity */
16+
#endif
17+
18+
// External wakeup
19+
#define BUTTON_PIN_BITMASK(GPIO) (1ULL << GPIO) // 2 ^ GPIO_NUMBER in hex
20+
#define WAKEUP_GPIO GPIO_NUM_33 // Only RTC IO are allowed - ESP32 Pin example
21+
22+
RTC_DATA_ATTR int bootCount = 0;
23+
24+
void print_wakeup_reason() {
25+
esp_sleep_wakeup_cause_t wakeup_reason;
26+
27+
wakeup_reason = esp_sleep_get_wakeup_cause();
28+
29+
Serial.print("Wakeup reason: ");
30+
31+
switch (wakeup_reason) {
32+
case ESP_SLEEP_WAKEUP_EXT0: Serial.println("rtc_io"); break;
33+
case ESP_SLEEP_WAKEUP_EXT1: Serial.println("rtc_cntl"); break;
34+
case ESP_SLEEP_WAKEUP_TIMER: Serial.println("timer"); break;
35+
case ESP_SLEEP_WAKEUP_TOUCHPAD: Serial.println("touchpad"); break;
36+
case ESP_SLEEP_WAKEUP_ULP: Serial.println("ulp"); break;
37+
default: Serial.println("power_up"); break;
38+
}
39+
}
40+
41+
void setup_timer() {
42+
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR);
43+
}
44+
45+
void setup_touchpad() {
46+
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
47+
touchSleepWakeUpEnable(T1, THRESHOLD);
48+
#else
49+
esp_sleep_enable_timer_wakeup(10);
50+
#endif
51+
}
52+
53+
void setup_rtc_io() {
54+
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
55+
esp_sleep_enable_ext0_wakeup(WAKEUP_GPIO, 1);
56+
rtc_gpio_pullup_en(WAKEUP_GPIO);
57+
rtc_gpio_pulldown_dis(WAKEUP_GPIO);
58+
#else
59+
esp_sleep_enable_timer_wakeup(10);
60+
#endif
61+
}
62+
63+
void setup_rtc_cntl() {
64+
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
65+
esp_sleep_enable_ext1_wakeup_io(BUTTON_PIN_BITMASK(WAKEUP_GPIO), ESP_EXT1_WAKEUP_ANY_HIGH);
66+
rtc_gpio_pulldown_dis(WAKEUP_GPIO);
67+
rtc_gpio_pullup_en(WAKEUP_GPIO);
68+
#else
69+
esp_sleep_enable_timer_wakeup(10);
70+
#endif
71+
}
72+
73+
74+
75+
void setup() {
76+
Serial.begin(115200);
77+
while (!Serial) {
78+
delay(10);
79+
}
80+
81+
//Increment boot number and print it every reboot
82+
++bootCount;
83+
Serial.println("Boot number: " + String(bootCount));
84+
85+
//Print the wakeup reason for ESP32
86+
print_wakeup_reason();
87+
Serial.flush();
88+
89+
if (bootCount == 1) {
90+
// Timer
91+
setup_timer();
92+
} else if (bootCount == 2) {
93+
// Touchpad
94+
setup_touchpad();
95+
} else if (bootCount == 3) {
96+
// rtc_io
97+
setup_rtc_io();
98+
} else if (bootCount == 4) {
99+
// rtc_cntl
100+
setup_rtc_cntl();
101+
}
102+
else {
103+
return;
104+
}
105+
106+
esp_deep_sleep_start();
107+
Serial.println("This will never be printed");
108+
109+
}
110+
111+
void loop() {
112+
//This is not going to be called
113+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_deep_sleep(dut):
2+
dut.expect_exact("Entering deep sleep")

0 commit comments

Comments
 (0)