6e7e703f89
Fixes #5251
22 lines
463 B
C
22 lines
463 B
C
|
|
#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_a;
|
|
uint8_t slice_num;
|
|
mp_int_t count;
|
|
} countio_counter_obj_t;
|
|
|
|
|
|
void counter_interrupt_handler();
|
|
|
|
void reset_countio(void);
|
|
|
|
#endif // MICROPY_INCLUDED_RASPBERRRYPI_COMMON_HAL_COUNTIO_COUNTER_H
|