forked from xiaozhi/xiaozhi-esp32
11 lines
287 B
C
11 lines
287 B
C
|
|
#ifndef _BOARD_CONFIG_H_
|
||
|
|
#define _BOARD_CONFIG_H_
|
||
|
|
|
||
|
|
#include "bsp/esp32_p4_function_ev_board.h" // Library for board configs and pins
|
||
|
|
|
||
|
|
#define AUDIO_INPUT_SAMPLE_RATE 24000
|
||
|
|
#define AUDIO_OUTPUT_SAMPLE_RATE 24000
|
||
|
|
|
||
|
|
#define DISPLAY_BACKLIGHT_OUTPUT_INVERT false
|
||
|
|
|
||
|
|
#endif // _BOARD_CONFIG_H_
|