mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
408 B
C
27 lines
408 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#include "soc.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "interrupt_reg.h"
|
|
#include "system_reg.h"
|
|
#include "sensitive_reg.h"
|
|
#include "soc.h"
|
|
|
|
#define DPORT_DATE_REG SYSTEM_DATE_REG
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#include "dport_access.h"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|