mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
drivers/cc3000: Fix call to extint_register.
This commit is contained in:
@@ -173,7 +173,7 @@ void SpiOpen(gcSpiHandleRx pfRxHandler)
|
||||
CS_HIGH();
|
||||
|
||||
// register EXTI
|
||||
extint_register((mp_obj_t)PIN_IRQ, GPIO_MODE_IT_FALLING, GPIO_PULLUP, (mp_obj_t)&irq_callback_obj, true, NULL);
|
||||
extint_register((mp_obj_t)PIN_IRQ, GPIO_MODE_IT_FALLING, GPIO_PULLUP, (mp_obj_t)&irq_callback_obj, true);
|
||||
extint_enable(PIN_IRQ->pin);
|
||||
|
||||
DEBUG_printf("SpiOpen finished; IRQ.pin=%d IRQ_LINE=%d\n", PIN_IRQ->pin, PIN_IRQ->pin);
|
||||
|
||||
Reference in New Issue
Block a user