2022-02-04 12:30:21 +01:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2019-04-04 11:06:22 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _PERF_MON_H_
|
|
|
|
|
#define _PERF_MON_H_
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include "esp_err.h"
|
|
|
|
|
#include "esp_log.h"
|
|
|
|
|
|
|
|
|
|
#include "xtensa_perfmon_access.h"
|
|
|
|
|
#include "xtensa_perfmon_masks.h"
|
|
|
|
|
#include "xtensa_perfmon_apis.h"
|
|
|
|
|
#include "xtensa/xt_perf_consts.h"
|
|
|
|
|
|
2020-11-10 18:40:01 +11:00
|
|
|
#endif // _PERF_MON_H_
|