Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
465 B
C
Raw Normal View History

2021-02-23 19:26:11 -06:00
#ifndef MICROPY_INCLUDED_RASPBERRRYPI_COMMON_HAL_COUNTIO_COUNTER_H
#define MICROPY_INCLUDED_RASPBERRRYPI_COMMON_HAL_COUNTIO_COUNTER_H
#include "common-hal/microcontroller/Pin.h"
#include "py/obj.h"
typedef struct {
mp_obj_base_t base;
uint8_t pin;
2021-02-23 19:26:11 -06:00
uint8_t slice_num;
mp_int_t count;
} countio_counter_obj_t;
void counter_interrupt_handler(void);
2021-02-23 19:26:11 -06:00
2021-08-27 17:39:19 -07:00
void reset_countio(void);
2021-02-23 19:26:11 -06:00
#endif // MICROPY_INCLUDED_RASPBERRRYPI_COMMON_HAL_COUNTIO_COUNTER_H