summaryrefslogtreecommitdiff
path: root/shared-bindings/countio/Counter.h
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2021-03-17 09:30:51 -0500
committerKevin Matocha <kmatocha@icloud.com>2021-03-17 09:30:51 -0500
commitef91e1752c233e45bfa898eb67caab44f1b02313 (patch)
tree9b6f26eb1bd0d54143b4d174cec720dcaca8065e /shared-bindings/countio/Counter.h
parent870dadc85adce4f10fa57dda1d11dda48b25dbc1 (diff)
parentbfc8c89536e12dba0cc9adc0065819d730bb0983 (diff)
merge upstream/main
Diffstat (limited to 'shared-bindings/countio/Counter.h')
-rw-r--r--shared-bindings/countio/Counter.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/shared-bindings/countio/Counter.h b/shared-bindings/countio/Counter.h
index 15adbbe2a..a9eced41a 100644
--- a/shared-bindings/countio/Counter.h
+++ b/shared-bindings/countio/Counter.h
@@ -6,13 +6,13 @@
extern const mp_obj_type_t countio_counter_type;
-extern void common_hal_countio_counter_construct(countio_counter_obj_t* self,
- const mcu_pin_obj_t* pin_a);
-extern void common_hal_countio_counter_deinit(countio_counter_obj_t* self);
-extern bool common_hal_countio_counter_deinited(countio_counter_obj_t* self);
-extern mp_int_t common_hal_countio_counter_get_count(countio_counter_obj_t* self);
-extern void common_hal_countio_counter_set_count(countio_counter_obj_t* self,
+extern void common_hal_countio_counter_construct(countio_counter_obj_t *self,
+ const mcu_pin_obj_t *pin_a);
+extern void common_hal_countio_counter_deinit(countio_counter_obj_t *self);
+extern bool common_hal_countio_counter_deinited(countio_counter_obj_t *self);
+extern mp_int_t common_hal_countio_counter_get_count(countio_counter_obj_t *self);
+extern void common_hal_countio_counter_set_count(countio_counter_obj_t *self,
mp_int_t new_count);
-extern void common_hal_countio_counter_reset(countio_counter_obj_t* self);
+extern void common_hal_countio_counter_reset(countio_counter_obj_t *self);
#endif // MICROPY_INCLUDED_SHARED_BINDINGS_COUNTIO_COUNTER_H