teensy: Provide dummy implementation of extint_register_pin.
This commit is contained in:
parent
fd860dc552
commit
a5609e1cf1
|
@ -2,6 +2,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "py/mpstate.h"
|
||||
#include "py/runtime.h"
|
||||
#include "py/mphal.h"
|
||||
#include "usb.h"
|
||||
#include "uart.h"
|
||||
|
@ -58,3 +59,7 @@ void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len) {
|
|||
|
||||
void mp_hal_gpio_clock_enable(GPIO_TypeDef *gpio) {
|
||||
}
|
||||
|
||||
void extint_register_pin(const void *pin, uint32_t mode, int hard_irq, mp_obj_t callback_obj) {
|
||||
mp_not_implemented(NULL);
|
||||
}
|
||||
|
|
|
@ -57,6 +57,8 @@ typedef struct {
|
|||
#define GPIO_MODE_AF_PP ((uint32_t)0x00000002)
|
||||
#define GPIO_MODE_AF_OD ((uint32_t)0x00000012)
|
||||
#define GPIO_MODE_ANALOG ((uint32_t)0x00000003)
|
||||
#define GPIO_MODE_IT_RISING ((uint32_t)1)
|
||||
#define GPIO_MODE_IT_FALLING ((uint32_t)2)
|
||||
|
||||
#define IS_GPIO_MODE(MODE) (((MODE) == GPIO_MODE_INPUT) ||\
|
||||
((MODE) == GPIO_MODE_OUTPUT_PP) ||\
|
||||
|
|
Loading…
Reference in New Issue