1
0
mirror of https://github.com/espressif/esp-idf synced 2025-03-24 00:19:15 -04:00

20 lines
331 B
C
Raw Normal View History

2022-07-12 14:44:10 +08:00
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stddef.h>
#include "hal/etm_hal.h"
#include "hal/etm_ll.h"
void etm_hal_init(etm_hal_context_t *hal)
{
hal->regs = &SOC_ETM;
}
void etm_hal_deinit(etm_hal_context_t *hal)
{
hal->regs = NULL;
}