config.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 SPISD_PIN_MOSI GPIO_NUM_16
  19. #define SPISD_PIN_MISO GPIO_NUM_18
  20. #define SPISD_PIN_CLK GPIO_NUM_17
  21. #define SPISD_PIN_TS GPIO_NUM_15
  22. #define R_BUTTON_GPIO GPIO_NUM_0
  23. #define XL9555_INT_GPIO GPIO_NUM_2
  24. #define XIO_IO_SBU2 (IO_EXPANDER_PIN_NUM_3)
  25. #define XIO_IO_SBU1 (IO_EXPANDER_PIN_NUM_4)
  26. #define XIO_KEY_L (IO_EXPANDER_PIN_NUM_5)
  27. #define XIO_KEY_Q (IO_EXPANDER_PIN_NUM_6)
  28. #define XIO_KEY_M (IO_EXPANDER_PIN_NUM_7)
  29. #define XIO_USB_SEL (IO_EXPANDER_PIN_NUM_8)
  30. #define XIO_SPK_EN (IO_EXPANDER_PIN_NUM_9)
  31. #define XIO_SYS_POW (IO_EXPANDER_PIN_NUM_10)
  32. #define XIO_VBUS_EN (IO_EXPANDER_PIN_NUM_11)
  33. #define XIO_EN_4G (IO_EXPANDER_PIN_NUM_12)
  34. #define XIO_EN_3V3A (IO_EXPANDER_PIN_NUM_13)
  35. #define XIO_CHG_CTRL (IO_EXPANDER_PIN_NUM_14)
  36. #define XIO_CHRG (IO_EXPANDER_PIN_NUM_15)
  37. #define DRV_IO_EXP_OUTPUT_MASK 0x3F18
  38. #define DRV_IO_EXP_INPUT_MASK 0xC0E7
  39. #define LCD_PIN_CS GPIO_NUM_14
  40. #define LCD_PIN_DC GPIO_NUM_12
  41. #define LCD_PIN_RD GPIO_NUM_10
  42. #define LCD_PIN_WR GPIO_NUM_11
  43. #define LCD_PIN_RST GPIO_NUM_NC
  44. #define LCD_PIN_D0 GPIO_NUM_13
  45. #define LCD_PIN_D1 GPIO_NUM_9
  46. #define LCD_PIN_D2 GPIO_NUM_8
  47. #define LCD_PIN_D3 GPIO_NUM_7
  48. #define LCD_PIN_D4 GPIO_NUM_6
  49. #define LCD_PIN_D5 GPIO_NUM_5
  50. #define LCD_PIN_D6 GPIO_NUM_4
  51. #define LCD_PIN_D7 GPIO_NUM_3
  52. #define DISPLAY_WIDTH 240
  53. #define DISPLAY_HEIGHT 320
  54. #define DISPLAY_MIRROR_X false
  55. #define DISPLAY_MIRROR_Y false
  56. #define DISPLAY_SWAP_XY false
  57. #define DISPLAY_OFFSET_X 0
  58. #define DISPLAY_OFFSET_Y 0
  59. #define DISPLAY_BACKLIGHT_PIN GPIO_NUM_21
  60. #define DISPLAY_BACKLIGHT_OUTPUT_INVERT false
  61. #define Module_4G_RX_PIN GPIO_NUM_44
  62. #define Module_4G_TX_PIN GPIO_NUM_43
  63. #endif // _BOARD_CONFIG_H_