Skip to content
Snippets Groups Projects
Commit 07744832 authored by Damien George's avatar Damien George Committed by Paul Sokolovsky
Browse files

esp8266/etshal.h: More prototypes of ESP8266 SDK/BootROM functions.

parent 26f0616e
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,6 @@
#ifndef _INCLUDED_MPHAL_H_
#define _INCLUDED_MPHAL_H_
// SDK functions not declared in SDK itself
void ets_isr_mask(unsigned);
void mp_hal_init(void);
void mp_hal_rtc_init(void);
void mp_hal_feed_watchdog(void);
......
......@@ -3,10 +3,15 @@
#include <os_type.h>
void ets_isr_unmask();
void ets_delay_us();
void ets_intr_lock(void);
void ets_intr_unlock(void);
void ets_isr_mask(uint32_t mask);
void ets_isr_unmask(uint32_t mask);
void ets_isr_attach(int irq_no, void (*handler)(void *), void *arg);
void ets_install_putc1();
void ets_isr_attach();
void uart_div_modify();
void ets_set_idle_cb(void (*handler)(void *), void *arg);
void ets_timer_arm_new(os_timer_t *tim, uint32_t millis, bool repeat, bool is_milli_timer);
void ets_timer_setfn(os_timer_t *tim, ETSTimerFunc callback, void *cb_data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment