Skip to content

Commit 656cb0b

Browse files
authored
Merge branch 'master' into patch-2
2 parents a6625b4 + 393834b commit 656cb0b

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/scripts/update-version.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ fi
3434
echo "New Arduino Version: $ESP_ARDUINO_VERSION"
3535
echo "ESP-IDF Version: $ESP_IDF_VERSION"
3636

37+
echo "Updating issue template..."
38+
cat .github/ISSUE_TEMPLATE/Issue-report.yml | \
39+
sed "s/.*\- latest master .*/ - latest master \(checkout manually\)\\n - v$ESP_ARDUINO_VERSION/g" > __issue-report.yml && mv __issue-report.yml .github/ISSUE_TEMPLATE/Issue-report.yml
40+
3741
echo "Updating platform.txt..."
3842
cat platform.txt | sed "s/version=.*/version=$ESP_ARDUINO_VERSION/g" > __platform.txt && mv __platform.txt platform.txt
3943

Kconfig.projbuild

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,15 @@ config ARDUINO_SELECTIVE_PPP
341341
depends on ARDUINO_SELECTIVE_COMPILATION
342342
default y
343343

344+
config ARDUINO_SELECTIVE_Hash
345+
bool "Enable Hash"
346+
depends on ARDUINO_SELECTIVE_COMPILATION
347+
default y
348+
344349
config ARDUINO_SELECTIVE_ArduinoOTA
345350
bool "Enable ArduinoOTA"
346351
depends on ARDUINO_SELECTIVE_COMPILATION && ARDUINO_SELECTIVE_Network
352+
select ARDUINO_SELECTIVE_Hash
347353
select ARDUINO_SELECTIVE_ESPmDNS
348354
default y
349355

@@ -383,6 +389,7 @@ config ARDUINO_SELECTIVE_WebServer
383389
depends on ARDUINO_SELECTIVE_COMPILATION && ARDUINO_SELECTIVE_Network
384390
default y
385391
select ARDUINO_SELECTIVE_FS
392+
select ARDUINO_SELECTIVE_Hash
386393

387394
config ARDUINO_SELECTIVE_WiFi
388395
bool "Enable WiFi"

libraries/ESP_SR/src/esp32-hal-sr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ esp_err_t sr_start(
343343
// Load WakeWord Detection
344344
afe_config_t *afe_config = afe_config_init(input_format, models, AFE_TYPE_SR, AFE_MODE_LOW_COST);
345345
g_sr_data->afe_handle = esp_afe_handle_from_config(afe_config);
346-
log_d("load wakenet '%s'", afe_config.wakenet_model_name);
346+
log_d("load wakenet '%s'", afe_config->wakenet_model_name);
347347
g_sr_data->afe_data = g_sr_data->afe_handle->create_from_config(afe_config);
348348
afe_config_free(afe_config);
349349

0 commit comments

Comments
 (0)