Merge branch 'bugfix/fix_reg_name_charactor_err' into 'master'

bugfix: fix reg name character error

See merge request espressif/esp-idf!14169
This commit is contained in:
morris
2021-09-18 07:10:57 +00:00
4 changed files with 6 additions and 6 deletions

View File

@@ -142,7 +142,7 @@ static inline void cpu_ll_clear_watchpoint(int id)
FORCE_INLINE_ATTR bool cpu_ll_is_debugger_attached(void)
{
return REG_GET_BIT(ASSIST_DEBUG_C0RE_0_DEBUG_MODE_REG, ASSIST_DEBUG_CORE_0_DEBUG_MODULE_ACTIVE);
return REG_GET_BIT(ASSIST_DEBUG_CORE_0_DEBUG_MODE_REG, ASSIST_DEBUG_CORE_0_DEBUG_MODULE_ACTIVE);
}
static inline void cpu_ll_break(void)