Bump to 1.4.8

This commit is contained in:
Terrence
2025-03-20 02:03:55 +08:00
parent f553459121
commit 71799ed85c
6 changed files with 6 additions and 6 deletions

View File

@@ -354,7 +354,7 @@ void Application::Start() {
Application* app = (Application*)arg;
app->MainLoop();
vTaskDelete(NULL);
}, "main_loop", 4096 * 2, this, 3, nullptr);
}, "main_loop", 4096 * 2, this, 4, nullptr);
/* Wait for the network to be ready */
board.StartNetwork();

View File

@@ -53,7 +53,7 @@ void AudioProcessor::Initialize(int channels, bool reference) {
auto this_ = (AudioProcessor*)arg;
this_->AudioProcessorTask();
vTaskDelete(NULL);
}, "audio_communication", 4096 * 2, this, 2, NULL);
}, "audio_communication", 4096 * 2, this, 3, NULL);
}
AudioProcessor::~AudioProcessor() {

View File

@@ -88,7 +88,7 @@ void WakeWordDetect::Initialize(int channels, bool reference) {
auto this_ = (WakeWordDetect*)arg;
this_->AudioDetectionTask();
vTaskDelete(NULL);
}, "audio_detection", 4096 * 2, this, 2, nullptr);
}, "audio_detection", 4096 * 2, this, 3, nullptr);
}
void WakeWordDetect::OnWakeWordDetected(std::function<void(const std::string& wake_word)> callback) {

View File

@@ -64,7 +64,7 @@ private:
i2c_master_bus_handle_t i2c_bus_;
esp_io_expander_handle_t io_expander = NULL;
LcdDisplay* display_;
button_handle_t boot_btn,pwr_btn;
button_handle_t boot_btn, pwr_btn;
void InitializeI2c() {
// Initialize I2C peripheral

View File

@@ -219,7 +219,7 @@ private:
i2c_master_bus_handle_t i2c_bus_;
esp_io_expander_handle_t io_expander = NULL;
LcdDisplay* display_;
button_handle_t boot_btn,pwr_btn;
button_handle_t boot_btn, pwr_btn;
void InitializeI2c() {
// Initialize I2C peripheral