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 22b427d

Browse files
authoredNov 3, 2020
IDF release/v3.3 (#3672)
ESP-IDF release/v3.3: 66d3783c8 esp-face: 420fc7e esp32-camera: 0107093
1 parent 6e5be78 commit 22b427d

File tree

256 files changed

+6078
-1015
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+6078
-1015
lines changed
 

‎Kconfig.projbuild

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,18 @@ choice ARDUINO_UDP_RUNNING_CORE
7676

7777
endchoice
7878

79+
config ARDUINO_UDP_TASK_PRIORITY
80+
int "Priority of the UDP task"
81+
default 3
82+
help
83+
Select at what priority you want the UDP task to run.
84+
7985
config ARDUINO_UDP_RUNNING_CORE
8086
int
8187
default 0 if ARDUINO_UDP_RUN_CORE0
8288
default 1 if ARDUINO_UDP_RUN_CORE1
8389
default -1 if ARDUINO_UDP_RUN_NO_AFFINITY
8490

85-
config CONFIG_ARDUINO_UDP_TASK_PRIORITY
86-
int
87-
default 3
88-
8991
config DISABLE_HAL_LOCKS
9092
bool "Disable mutex locks for HAL"
9193
default "n"

‎libraries/WiFi/examples/WiFiProv/WiFiProv.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ void setup() {
5656
/* uint8_t uuid[16] = {0xb4, 0xdf, 0x5a, 0x1c, 0x3f, 0x6b, 0xf4, 0xbf,
5757
0xea, 0x4a, 0x82, 0x03, 0x04, 0x90, 0x1a, 0x02 };*/
5858
WiFi.onEvent(SysProvEvent);
59-
WiFi.beginProvision(provSchemeBLE, WIFI_PROV_SCHEME_BLE_EVENT_HANDLER_FREE_BTDM, WIFI_PROV_SECURITY_1, "abcd1234", "PROV_XXX", NULL, NULL);
59+
//WiFi.beginProvision(provSchemeBLE, WIFI_PROV_SCHEME_BLE_EVENT_HANDLER_FREE_BTDM, WIFI_PROV_SECURITY_1, "abcd1234", "PROV_XXX", NULL, NULL);
60+
WiFi.beginProvision(provSchemeSoftAP, WIFI_PROV_EVENT_HANDLER_NONE, WIFI_PROV_SECURITY_1, "abcd1234", NULL, NULL, NULL);
6061
}
6162

6263
void loop() {

0 commit comments

Comments
 (0)