config.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef _BOARD_CONFIG_H_
  2. #define _BOARD_CONFIG_H_
  3. #include <driver/gpio.h>
  4. #define AUDIO_INPUT_SAMPLE_RATE 16000
  5. #define AUDIO_OUTPUT_SAMPLE_RATE 24000
  6. #define AUDIO_I2S_MIC_GPIO_WS GPIO_NUM_9
  7. #define AUDIO_I2S_MIC_GPIO_SCK GPIO_NUM_10
  8. #define AUDIO_I2S_MIC_GPIO_DIN GPIO_NUM_18
  9. #define AUDIO_I2S_SPK_GPIO_DOUT GPIO_NUM_4
  10. #define AUDIO_I2S_SPK_GPIO_BCLK GPIO_NUM_5
  11. #define AUDIO_I2S_SPK_GPIO_LRCK GPIO_NUM_6
  12. #define BUILTIN_LED_GPIO GPIO_NUM_40
  13. #define BOOT_BUTTON_GPIO GPIO_NUM_0
  14. #define TOUCH_BUTTON_GPIO GPIO_NUM_NC
  15. #define VOLUME_UP_BUTTON_GPIO GPIO_NUM_47
  16. #define VOLUME_DOWN_BUTTON_GPIO GPIO_NUM_46
  17. #define DISPLAY_BACKLIGHT_PIN GPIO_NUM_7
  18. #define DISPLAY_MOSI_PIN GPIO_NUM_17
  19. #define DISPLAY_CLK_PIN GPIO_NUM_8
  20. #define DISPLAY_DC_PIN GPIO_NUM_15
  21. #define DISPLAY_RST_PIN GPIO_NUM_16
  22. #define DISPLAY_CS_PIN GPIO_NUM_NC
  23. #define ML307_RX_PIN GPIO_NUM_11
  24. #define ML307_TX_PIN GPIO_NUM_12
  25. #define DISPLAY_WIDTH 240
  26. #define DISPLAY_HEIGHT 240
  27. #define DISPLAY_MIRROR_X false
  28. #define DISPLAY_MIRROR_Y true
  29. #define DISPLAY_SWAP_XY true
  30. #define DISPLAY_INVERT_COLOR true
  31. #define DISPLAY_RGB_ORDER LCD_RGB_ELEMENT_ORDER_RGB
  32. #define DISPLAY_OFFSET_X 80
  33. #define DISPLAY_OFFSET_Y 0
  34. #define DISPLAY_BACKLIGHT_OUTPUT_INVERT false
  35. // A MCP Test: Control a lamp
  36. #define LAMP_GPIO GPIO_NUM_18
  37. #endif // _BOARD_CONFIG_H_