1 /* 2 * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 // The HAL layer for PCNT (common part) 8 9 #include "hal/pcnt_hal.h" 10 #include "hal/pcnt_ll.h" 11 pcnt_hal_init(pcnt_hal_context_t * hal,int pcnt_num)12void pcnt_hal_init(pcnt_hal_context_t *hal, int pcnt_num) 13 { 14 //Get hardware instance. 15 hal->dev = PCNT_LL_GET_HW(pcnt_num); 16 } 17