Skip to content

function definitions missing from ets_sys.h #195

Closed
@davydnorris

Description

@davydnorris

The following function definitions are missing from ets_sys.h, which causes some of the macro definitions to fail when compiling:

typedef void (* ets_isr_t)(void *);

void ets_intr_lock(void);
void ets_intr_unlock(void);
void ets_isr_attach(int i, ets_isr_t func, void *arg);
//the following are missing
void ets_isr_mask(unsigned intr);
void ets_isr_unmask(unsigned intr);
void ets_wdt_enable(void);  
void ets_wdt_disable(void);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions