diff options
author | Damien George <damien.p.george@gmail.com> | 2014-11-27 20:30:33 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-11-27 20:30:33 +0000 |
commit | 075d597464be619475535930de2f36abe69176f8 (patch) | |
tree | 286b765fb8e3c3dc1c741eb825fd7ef49e7e4946 /esp8266/etshal.h | |
parent | 2399aa03b81e6a23f0b2719196c07101884222be (diff) | |
download | micropython-075d597464be619475535930de2f36abe69176f8.tar.gz micropython-075d597464be619475535930de2f36abe69176f8.zip |
esp8266: New port of Micro Python to ESP8266 wifi module.
Diffstat (limited to 'esp8266/etshal.h')
-rw-r--r-- | esp8266/etshal.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/esp8266/etshal.h b/esp8266/etshal.h new file mode 100644 index 0000000000..5ee67d027f --- /dev/null +++ b/esp8266/etshal.h @@ -0,0 +1,10 @@ +#ifndef _INCLUDED_ETSHAL_H_ +#define _INCLUDED_ETSHAL_H_ + +void ets_isr_unmask(); +void ets_install_putc1(); +void ets_isr_attach(); +void uart_div_modify(); +uint32_t ets_get_cpu_frequency(); + +#endif // _INCLUDED_ETSHAL_H_ |