feat(ulp): add basic support for running lp core on C5

This commit is contained in:
Marius Vikhammer
2024-03-08 14:22:07 +08:00
parent 966f47f5c1
commit a32fb07e7b
24 changed files with 239 additions and 116 deletions

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __ULP_COMMON_DEFS_H__
#define __ULP_COMMON_DEFS_H__
#include "soc/soc.h"
#ifdef __cplusplus
extern "C" {
#endif
#define RTC_SLOW_MEM ((uint32_t*) SOC_RTC_DATA_LOW)
#ifdef __cplusplus
}
#endif
#endif // __ULP_COMMON_DEFS_H__