config.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #ifndef _BOARD_CONFIG_H_
  2. #define _BOARD_CONFIG_H_
  3. #include <driver/gpio.h>
  4. enum PowerSupply {
  5. kDeviceTypecSupply,
  6. kDeviceBatterySupply,
  7. };
  8. #define AUDIO_INPUT_SAMPLE_RATE 16000
  9. #define AUDIO_OUTPUT_SAMPLE_RATE 16000
  10. #define AUDIO_I2S_GPIO_MCLK GPIO_NUM_38
  11. #define AUDIO_I2S_GPIO_WS GPIO_NUM_42
  12. #define AUDIO_I2S_GPIO_BCLK GPIO_NUM_40
  13. #define AUDIO_I2S_GPIO_DIN GPIO_NUM_39
  14. #define AUDIO_I2S_GPIO_DOUT GPIO_NUM_41
  15. #define AUDIO_CODEC_I2C_SDA_PIN GPIO_NUM_48
  16. #define AUDIO_CODEC_I2C_SCL_PIN GPIO_NUM_47
  17. #define AUDIO_CODEC_ES8389_ADDR ES8389_CODEC_DEFAULT_ADDR
  18. #define R_BUTTON_GPIO GPIO_NUM_0
  19. #define XL9555_INT_GPIO GPIO_NUM_2
  20. #define XIO_IO_SBU2 (IO_EXPANDER_PIN_NUM_3)
  21. #define XIO_IO_SBU1 (IO_EXPANDER_PIN_NUM_4)
  22. #define XIO_KEY_L (IO_EXPANDER_PIN_NUM_5)
  23. #define XIO_KEY_Q (IO_EXPANDER_PIN_NUM_6)
  24. #define XIO_KEY_M (IO_EXPANDER_PIN_NUM_7)
  25. #define XIO_USB_SEL (IO_EXPANDER_PIN_NUM_8)
  26. #define XIO_SPK_EN (IO_EXPANDER_PIN_NUM_9)
  27. #define XIO_SYS_POW (IO_EXPANDER_PIN_NUM_10)
  28. #define XIO_VBUS_EN (IO_EXPANDER_PIN_NUM_11)
  29. #define XIO_EN_4G (IO_EXPANDER_PIN_NUM_12)
  30. #define XIO_EN_3V3A (IO_EXPANDER_PIN_NUM_13)
  31. #define XIO_CHG_CTRL (IO_EXPANDER_PIN_NUM_14)
  32. #define XIO_CHRG (IO_EXPANDER_PIN_NUM_15)
  33. #define DRV_IO_EXP_OUTPUT_MASK 0x3F18
  34. #define DRV_IO_EXP_INPUT_MASK 0xC0E7
  35. #define LCD_PIN_CS GPIO_NUM_14
  36. #define LCD_PIN_DC GPIO_NUM_12
  37. #define LCD_PIN_RD GPIO_NUM_10
  38. #define LCD_PIN_WR GPIO_NUM_11
  39. #define LCD_PIN_RST GPIO_NUM_NC
  40. #define LCD_PIN_D0 GPIO_NUM_13
  41. #define LCD_PIN_D1 GPIO_NUM_9
  42. #define LCD_PIN_D2 GPIO_NUM_8
  43. #define LCD_PIN_D3 GPIO_NUM_7
  44. #define LCD_PIN_D4 GPIO_NUM_6
  45. #define LCD_PIN_D5 GPIO_NUM_5
  46. #define LCD_PIN_D6 GPIO_NUM_4
  47. #define LCD_PIN_D7 GPIO_NUM_3
  48. #define DISPLAY_WIDTH 240
  49. #define DISPLAY_HEIGHT 320
  50. #define DISPLAY_MIRROR_X false
  51. #define DISPLAY_MIRROR_Y false
  52. #define DISPLAY_SWAP_XY false
  53. #define DISPLAY_OFFSET_X 0
  54. #define DISPLAY_OFFSET_Y 0
  55. #define DISPLAY_BACKLIGHT_PIN GPIO_NUM_21
  56. #define DISPLAY_BACKLIGHT_OUTPUT_INVERT false
  57. #endif // _BOARD_CONFIG_H_