mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-10-27 20:24:50 +08:00
feat(freertos): Simplify xtensa platform code
All normal ISRs are called by "_xt_isr_handler".
This commit is contained in:
@ -158,8 +158,6 @@ void _xt_user_exit (void);
|
||||
void _xt_tick_timer_init (void);
|
||||
void _xt_isr_unmask (uint32_t unmask);
|
||||
void _xt_isr_mask (uint32_t mask);
|
||||
uint32_t _xt_read_ints (void);
|
||||
void _xt_clear_ints(uint32_t mask);
|
||||
|
||||
/* interrupt related */
|
||||
typedef void (* _xt_isr)(void *arg);
|
||||
|
||||
@ -140,7 +140,6 @@ Derviation of clock divisor for timer tick and interrupt (one per tick).
|
||||
#else
|
||||
#ifndef __ASSEMBLER__
|
||||
extern unsigned _xt_tick_divisor;
|
||||
extern void _xt_tick_divisor_init(void);
|
||||
#endif
|
||||
#define XT_TICK_DIVISOR _xt_tick_divisor
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user