mirror of
https://github.com/78/xiaozhi-esp32.git
synced 2026-02-27 22:36:35 +00:00
* Refactor application error handling and improve network task logic - Updated error handling for modem initialization failure in Application::Initialize(). - Added new error message for modem initialization in English and Chinese language files. - Simplified lambda captures in NetworkTask to avoid unnecessary references. - Set main task priority in Application::Run() for better performance. * Add support for Bread Compact NT26 board - Introduced new board configuration for Bread Compact NT26 in CMakeLists.txt and Kconfig. - Added board-specific implementation in compact_nt26_board.cc and nt26_board.cc. - Created configuration files for NT26, including config.h and config.json. - Updated dependencies in idf_component.yml to include uart-eth-modem. - Translated error messages in config.h for OLED display type selection to English. - Enhanced display and button initialization logic for NT26 board. * Update project version and improve build configuration - Updated project version from 2.1.0 to 2.2.0 in CMakeLists.txt. - Enabled minimal build configuration to include only essential components. - Updated README files to replace QQ group links with Discord links for community engagement. * Update Bread Compact NT26 board configuration name in config.json * fix compile errors * Update uart-eth-modem dependency format in idf_component.yml * fix esp32 compiling errors * Update CMakeLists.txt to change component dependency from REQUIRES to PRIV_REQUIRES for esp_pm, esp_psram, and esp_driver_gpio * Refactor CMakeLists.txt to explicitly list board common source files and update include directories for better clarity and organization. * Add esp_driver_ppa as a dependency in CMakeLists.txt
60 lines
1.4 KiB
C
60 lines
1.4 KiB
C
#ifndef _BOARD_CONFIG_H_
|
|
#define _BOARD_CONFIG_H_
|
|
|
|
#include <driver/gpio.h>
|
|
|
|
#define AUDIO_INPUT_SAMPLE_RATE 16000
|
|
#define AUDIO_OUTPUT_SAMPLE_RATE 24000
|
|
|
|
// 如果使用 Duplex I2S 模式,请注释下面一行
|
|
#define AUDIO_I2S_METHOD_SIMPLEX
|
|
|
|
#ifdef AUDIO_I2S_METHOD_SIMPLEX
|
|
|
|
#define AUDIO_I2S_MIC_GPIO_WS GPIO_NUM_4
|
|
#define AUDIO_I2S_MIC_GPIO_SCK GPIO_NUM_5
|
|
#define AUDIO_I2S_MIC_GPIO_DIN GPIO_NUM_6
|
|
#define AUDIO_I2S_SPK_GPIO_DOUT GPIO_NUM_7
|
|
#define AUDIO_I2S_SPK_GPIO_BCLK GPIO_NUM_15
|
|
#define AUDIO_I2S_SPK_GPIO_LRCK GPIO_NUM_16
|
|
|
|
#else
|
|
|
|
#define AUDIO_I2S_GPIO_WS GPIO_NUM_4
|
|
#define AUDIO_I2S_GPIO_BCLK GPIO_NUM_5
|
|
#define AUDIO_I2S_GPIO_DIN GPIO_NUM_6
|
|
#define AUDIO_I2S_GPIO_DOUT GPIO_NUM_7
|
|
|
|
#endif
|
|
|
|
|
|
#define BUILTIN_LED_GPIO GPIO_NUM_48
|
|
#define BOOT_BUTTON_GPIO GPIO_NUM_0
|
|
#define TOUCH_BUTTON_GPIO GPIO_NUM_47
|
|
#define VOLUME_UP_BUTTON_GPIO GPIO_NUM_40
|
|
#define VOLUME_DOWN_BUTTON_GPIO GPIO_NUM_39
|
|
|
|
#define DISPLAY_SDA_PIN GPIO_NUM_41
|
|
#define DISPLAY_SCL_PIN GPIO_NUM_42
|
|
#define DISPLAY_WIDTH 128
|
|
|
|
#if CONFIG_OLED_SSD1306_128X32
|
|
#define DISPLAY_HEIGHT 32
|
|
#elif CONFIG_OLED_SSD1306_128X64
|
|
#define DISPLAY_HEIGHT 64
|
|
#elif CONFIG_OLED_SH1106_128X64
|
|
#define DISPLAY_HEIGHT 64
|
|
#define SH1106
|
|
#else
|
|
#error "OLED display type is not selected"
|
|
#endif
|
|
|
|
#define DISPLAY_MIRROR_X true
|
|
#define DISPLAY_MIRROR_Y true
|
|
|
|
|
|
// A MCP Test: Control a lamp
|
|
#define LAMP_GPIO GPIO_NUM_18
|
|
|
|
#endif // _BOARD_CONFIG_H_
|