Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9a6981f

Browse files
committedApr 16, 2024
debug test
1 parent a45b5af commit 9a6981f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎libraries/WiFi/src/WiFi.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,21 @@ extern "C" {
4141
// ---------------------------------------------------------- Debug ------------------------------------------------------
4242
// -----------------------------------------------------------------------------------------------------------------------
4343

44+
#if CONFIG_IDF_TARGET_ESP32
45+
static uint32_t __test1 = 0;
46+
static uint32_t __test2 = 0;
47+
static uint32_t __test3 = 0;
48+
static uint32_t __test4 = 0;
49+
static uint32_t __test5 = 0;
50+
#elif CONFIG_IDF_TARGET_ESP32S2
51+
static uint8_t __test1 = 0;
52+
static uint8_t __test2 = 0;
53+
static uint8_t __test3 = 0;
54+
#elif CONFIG_IDF_TARGET_ESP32C6
55+
static uint8_t __test1 = 0;
56+
#elif CONFIG_IDF_TARGET_ESP32S3
57+
static uint32_t __test1 = 0;
58+
#endif
4459

4560
/**
4661
* Output WiFi settings to an object derived from Print interface (like Serial).

0 commit comments

Comments
 (0)
Please sign in to comment.