1 /* 2 * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stddef.h> 8 #include "hal/etm_hal.h" 9 #include "hal/etm_ll.h" 10 etm_hal_init(etm_hal_context_t * hal)11void etm_hal_init(etm_hal_context_t *hal) 12 { 13 hal->regs = &SOC_ETM; 14 } 15 etm_hal_deinit(etm_hal_context_t * hal)16void etm_hal_deinit(etm_hal_context_t *hal) 17 { 18 hal->regs = NULL; 19 } 20