diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-08 16:40:08 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-08 16:40:08 +0000 |
commit | c3d35c6ac7348e8dc9072bb67b2c62294764fe00 (patch) | |
tree | f7eed83b56bb6814bd78b3c1b8fddb7df3b74ad2 /stm/pin.h | |
parent | 01d50d0d586a0e2630613120336faf75277d22d6 (diff) | |
download | micropython-c3d35c6ac7348e8dc9072bb67b2c62294764fe00.tar.gz micropython-c3d35c6ac7348e8dc9072bb67b2c62294764fe00.zip |
stm: Put pyb module in ROM.
Diffstat (limited to 'stm/pin.h')
-rw-r--r-- | stm/pin.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ extern const pin_named_pins_obj_t pin_cpu_pins_obj; const pin_obj_t *pin_find_named_pin(const pin_named_pin_t *pins, const char *name); const pin_af_obj_t *pin_find_af(const pin_obj_t *pin, uint8_t fn, uint8_t unit, uint8_t pin_type); -void pin_map_init(mp_obj_t mod); +void pin_map_init(void); // C function for mapping python pin identifier into an ordinal pin number. const pin_obj_t *pin_map_user_obj(mp_obj_t user_obj); |