Skip to content

Commit f293c8b

Browse files
committed
Fix new IDF lib can not build issue
1 parent ab098e6 commit f293c8b

File tree

8 files changed

+7
-5
lines changed

8 files changed

+7
-5
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

solutions/doorbell_demo/main/settings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ extern "C" {
4444
* @brief GPIO for ring button
4545
*
4646
* @note When use ESP32P4-Fuction-Ev-Board, GPIO35(boot button) is connected RMII_TXD1
47-
* Which will cause socket error
47+
* When enable `NETWORK_USE_ETHERNET` will cause socket error
4848
* User must replace it to a unused GPIO instead (like GPIO27)
4949
*/
50-
#define DOOR_BELL_RING_BUTTON 35
50+
#define DOOR_BELL_RING_BUTTON 27
5151

5252
#ifdef __cplusplus
5353
}

solutions/doorbell_demo/sdkconfig.defaults.esp32p4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
1+
# Flash setting
2+
CONFIG_FLASHMODE_QIO=y
23
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
34

45
CONFIG_SPIRAM_SPEED_200M=y

solutions/videocall_demo/main/settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ extern "C" {
4444
* @brief GPIO for ring button
4545
*
4646
* @note When use ESP32P4-Fuction-Ev-Board, GPIO35(boot button) is connected RMII_TXD1
47-
* Which will cause socket error
47+
* When enable `NETWORK_USE_ETHERNET` will cause socket error
4848
* User must replace it to a unused GPIO instead (like GPIO27)
4949
*/
5050
#define VIDEO_CALL_RING_BUTTON 35

solutions/videocall_demo/sdkconfig.defaults.esp32p4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
1+
# Flash setting
2+
CONFIG_FLASHMODE_QIO=y
23
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
34

45
CONFIG_SPIRAM_SPEED_200M=y

0 commit comments

Comments
 (0)