8 years, 10 months ago.

Where are the interrupt pins on NUCLEO-F411RE?

I just got the board yesterday and I cannot find the locations of interrupt pins. Can someone help me out?

Thanks

Question relating to:

Affordable and flexible platform to ease prototyping using a STM32F411RET6 microcontroller.

1 Answer

8 years, 10 months ago.

If you use a recent version of the mbed lib (right mouse button, update in the online compiler): Every unique numbered pin. That means you can use any pin as InterruptIn, but you cannot use multiple pins with the same number on a different port as InterruptIn. So you can use PA_1, PB_2, PA_3, PC_4, etc. But in this example you could not use also PE_1.

Accepted Answer

if i use PA_1 as InterruptIn, Can i use PH_1 as DigitalIn or DigitalOut ?

posted by Chaiyaporn Boonyasathian 18 Apr 2017

Yes, just not as InterruptIn.

posted by Erik - 18 Apr 2017

Thank you.

posted by Chaiyaporn Boonyasathian 20 Apr 2017