mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
29 lines
466 B
C
29 lines
466 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef _SOC_DPORT_REG_H_
|
|
#define _SOC_DPORT_REG_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
|
|
|
|
#endif /*_SOC_DPORT_REG_H_ */
|