|
| 1 | +#ifndef _BOARD_CONFIG_H_ |
| 2 | +#define _BOARD_CONFIG_H_ |
| 3 | + |
| 4 | +#include <driver/gpio.h> |
| 5 | + |
| 6 | + |
| 7 | +#define AUDIO_INPUT_SAMPLE_RATE 24000 |
| 8 | +#define AUDIO_OUTPUT_SAMPLE_RATE 24000 |
| 9 | + |
| 10 | +#define AUDIO_INPUT_REFERENCE false |
| 11 | + |
| 12 | +#define AUDIO_I2S_GPIO_MCLK GPIO_NUM_19 |
| 13 | +#define AUDIO_I2S_GPIO_WS GPIO_NUM_22 |
| 14 | +#define AUDIO_I2S_GPIO_BCLK GPIO_NUM_21 |
| 15 | +#define AUDIO_I2S_GPIO_DIN GPIO_NUM_20 |
| 16 | +#define AUDIO_I2S_GPIO_DOUT GPIO_NUM_23 |
| 17 | + |
| 18 | +#define AUDIO_CODEC_PA_PIN GPIO_NUM_NC |
| 19 | +#define AUDIO_CODEC_I2C_SDA_PIN GPIO_NUM_18 |
| 20 | +#define AUDIO_CODEC_I2C_SCL_PIN GPIO_NUM_8 |
| 21 | +#define AUDIO_CODEC_ES8311_ADDR ES8311_CODEC_DEFAULT_ADDR |
| 22 | +#define AUDIO_CODEC_ES7210_ADDR ES7210_CODEC_DEFAULT_ADDR |
| 23 | + |
| 24 | +#define I2C_Touch_ADDRESS 0x38 |
| 25 | +#define I2C_ADDRESS ESP_IO_EXPANDER_I2C_TCA9554_ADDRESS_000 |
| 26 | +#define BOOT_BUTTON_GPIO GPIO_NUM_9 |
| 27 | +#define PWR_BUTTON_GPIO GPIO_NUM_2 |
| 28 | + |
| 29 | +#define LCD_CS GPIO_NUM_10 |
| 30 | +#define LCD_PCLK GPIO_NUM_11 |
| 31 | +#define LCD_D0 GPIO_NUM_4 |
| 32 | +#define LCD_D1 GPIO_NUM_5 |
| 33 | +#define LCD_D2 GPIO_NUM_6 |
| 34 | +#define LCD_D3 GPIO_NUM_7 |
| 35 | +#define LCD_RST GPIO_NUM_3 |
| 36 | +#define LCD_LIGHT (-1) |
| 37 | + |
| 38 | +#define EXAMPLE_LCD_H_RES 466 |
| 39 | +#define EXAMPLE_LCD_V_RES 466 |
| 40 | + |
| 41 | +#define DISPLAY_MIRROR_X false |
| 42 | +#define DISPLAY_MIRROR_Y false |
| 43 | +#define DISPLAY_SWAP_XY false |
| 44 | + |
| 45 | +#define DISPLAY_OFFSET_X 0 |
| 46 | +#define DISPLAY_OFFSET_Y 0 |
| 47 | + |
| 48 | + |
| 49 | +#endif // _BOARD_CONFIG_H_ |
0 commit comments