esp-idf/components/hal/lcd_hal.c

14 lines
256 B
C
Raw Normal View History

2021-09-26 23:32:29 -04:00
/*
* SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
2021-02-26 00:58:04 -05:00
#include "hal/lcd_hal.h"
#include "hal/lcd_ll.h"
void lcd_hal_init(lcd_hal_context_t *hal, int id)
{
hal->dev = LCD_LL_GET_HW(id);
}