lcd_hal.h 366 B

1234567891011121314151617181920212223
  1. /*
  2. * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. typedef struct lcd_cam_dev_t *lcd_soc_handle_t;
  11. typedef struct {
  12. lcd_soc_handle_t dev;
  13. } lcd_hal_context_t;
  14. void lcd_hal_init(lcd_hal_context_t *hal, int id);
  15. #ifdef __cplusplus
  16. }
  17. #endif