Files
xiaozhi-esp32/main/boards/lceda-course-examples/eda-super-bear/config.h
JasonYANG17 d545f746bc feat: Add project support for the EDA course case team (#1758)
* Add EDA Education Board Configuration

- Add eda-tv-pro Board Configuration
- Add eda-robot-pro Board Configuration
- Add eda-super-bear Board Configuration

* docs(oscillator): Add file headers with copyright and license information

- Add comprehensive file headers to oscillator.cc and oscillator.h in eda-robot-pro board
- Add comprehensive file headers to oscillator.cc and oscillator.h in eda-super-bear board
- Include original author attribution (Juan Gonzalez-Gomez/Obijuan) and ESP32 port credit (txp666)
- Include GPL license notice and file descriptions for clarity and compliance

* fix: Move the eda* boards to the lceda-course-examples folder.

- Move eda-robot-pro, eda-super-bear, and eda-tv-pro boards to lceda-course-examples subdirectory
- Update CMakeLists.txt to set MANUFACTURER variable for each board configuration
2026-02-13 04:17:38 +08:00

30 lines
809 B
C

#ifndef _BOARD_CONFIG_H_
#define _BOARD_CONFIG_H_
#include <driver/gpio.h>
#define RIGHT_LEG_PIN GPIO_NUM_11
#define RIGHT_FOOT_PIN GPIO_NUM_14
#define LEFT_LEG_PIN GPIO_NUM_13
#define LEFT_FOOT_PIN GPIO_NUM_12
#define LEFT_HAND_PIN GPIO_NUM_21
#define RIGHT_HAND_PIN GPIO_NUM_10
#define AUDIO_INPUT_SAMPLE_RATE 16000
#define AUDIO_OUTPUT_SAMPLE_RATE 24000
#define AUDIO_I2S_METHOD_SIMPLEX
#define AUDIO_I2S_MIC_GPIO_WS GPIO_NUM_40
#define AUDIO_I2S_MIC_GPIO_SCK GPIO_NUM_39
#define AUDIO_I2S_MIC_GPIO_DIN GPIO_NUM_41
#define AUDIO_I2S_SPK_GPIO_DOUT GPIO_NUM_47
#define AUDIO_I2S_SPK_GPIO_BCLK GPIO_NUM_48
#define AUDIO_I2S_SPK_GPIO_LRCK GPIO_NUM_45
#define TOUCH_BUTTON_GPIO GPIO_NUM_14
#define BOOT_BUTTON_GPIO GPIO_NUM_38
#define EDA_SUPER_BEAR_VERSION "1.0.0"
#endif // _BOARD_CONFIG_H_