summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/modpyb.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-11-06 01:30:19 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-11-06 01:30:19 +0300
commit8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df (patch)
tree5b20cca6c25356f0d812637ef2a0bdebd34c32c6 /esp8266/modpyb.h
parent3ccdbf792cb04fb5561dae52839b51a854f75808 (diff)
downloadmicropython-8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df.tar.gz
micropython-8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df.zip
esp8266: Rename "machine" module implementation to use contemporary naming.
Previously they used historical "pyb" affix causing confusion and inconsistency (there's no "pyb" module in modern ports; but people took esp8266 port as an example, and "pyb" naming kept proliferating, while other people complained that source structure is not clear).
Diffstat (limited to 'esp8266/modpyb.h')
-rw-r--r--esp8266/modpyb.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/esp8266/modpyb.h b/esp8266/modpyb.h
deleted file mode 100644
index c23a119e8d..0000000000
--- a/esp8266/modpyb.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef __MICROPY_INCLUDED_ESP8266_MODPYB_H__
-#define __MICROPY_INCLUDED_ESP8266_MODPYB_H__
-
-#include "py/obj.h"
-
-extern const mp_obj_type_t pyb_pin_type;
-extern const mp_obj_type_t pyb_pwm_type;
-extern const mp_obj_type_t pyb_adc_type;
-extern const mp_obj_type_t pyb_rtc_type;
-extern const mp_obj_type_t pyb_uart_type;
-extern const mp_obj_type_t pyb_i2c_type;
-extern const mp_obj_type_t pyb_spi_type;
-extern const mp_obj_type_t pyb_hspi_type;
-extern const mp_obj_type_t machine_spi_type;
-
-MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_info_obj);
-
-typedef struct _pyb_pin_obj_t {
- mp_obj_base_t base;
- uint16_t phys_port;
- uint16_t func;
- uint32_t periph;
-} pyb_pin_obj_t;
-
-const pyb_pin_obj_t pyb_pin_obj[16 + 1];
-
-void pin_init0(void);
-void pin_intr_handler_iram(void *arg);
-void pin_intr_handler(uint32_t);
-
-uint mp_obj_get_pin(mp_obj_t pin_in);
-pyb_pin_obj_t *mp_obj_get_pin_obj(mp_obj_t pin_in);
-int pin_get(uint pin);
-void pin_set(uint pin, int value);
-
-#endif // __MICROPY_INCLUDED_ESP8266_MODPYB_H__