mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
333 B
C
17 lines
333 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// The HAL layer for LP I2S
|
|
|
|
#include "soc/soc.h"
|
|
#include "hal/lp_i2s_hal.h"
|
|
#include "hal/lp_i2s_ll.h"
|
|
|
|
void lp_i2s_hal_init(lp_i2s_hal_context_t *hal, int group_id)
|
|
{
|
|
hal->dev = LP_I2S_LL_GET_HW(group_id);
|
|
}
|