Merge branch 'feat/support_step_notify_on_h2eco5_v5.4' into 'release/v5.4'

feat(pcnt): support step_notify on esp32h2 eco5 (v5.4)

See merge request espressif/esp-idf!35620
This commit is contained in:
morris
2025-01-07 10:38:10 +08:00
7 changed files with 260 additions and 136 deletions

View File

@@ -497,6 +497,16 @@ static inline void pcnt_ll_reset_register(int group_id)
PCR.pcnt_conf.pcnt_rst_en = 0;
}
/**
* @brief Check if the step notify is supported
*/
static inline bool pcnt_ll_is_step_notify_supported(int group_id)
{
(void)group_id;
return true;
}
#ifdef __cplusplus
}
#endif