kopia lustrzana https://github.com/espressif/esp-idf
22 wiersze
412 B
C
22 wiersze
412 B
C
/*
|
|
* SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
#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"
|
|
|
|
#endif // _PERF_MON_H_
|