fix(peripherals): Correct typo in periph_inttrput_t

Corrected the typo in the type name from 'periph_inttrput_t' to 'periph_interrupt_t'.
This commit is contained in:
Yuan Yu
2025-05-15 17:45:27 +08:00
parent 9f6136d650
commit 9a109ca17c
9 changed files with 1 additions and 17 deletions

View File

@@ -118,8 +118,6 @@ typedef enum {
ETS_MAX_INTR_SOURCE, /**< number of interrupt sources */
} periph_interrupt_t;
typedef periph_interrupt_t periph_interrput_t __attribute__((deprecated("in favor of periph_interrupt_t")));
extern const char * const esp_isr_names[ETS_MAX_INTR_SOURCE];
#ifdef __cplusplus