Skip to content
Snippets Groups Projects
Commit f22a4f8e authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266/etshal.h: Add timer functions prototypes.

parent f39bcb30
No related branches found
No related tags found
No related merge requests found
#ifndef _INCLUDED_ETSHAL_H_
#define _INCLUDED_ETSHAL_H_
#include <os_type.h>
void ets_isr_unmask();
void ets_install_putc1();
void ets_isr_attach();
void uart_div_modify();
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);
void ets_timer_disarm(os_timer_t *tim);
#endif // _INCLUDED_ETSHAL_H_
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment