Where can I find board datasheet like STM products?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Where can I find board datasheet like STM products?

Jump to solution
818 Views
bosnian_beast
Contributor III

STM has datasheets for their evaluation boards where you can see the mappings of LEDs/SWs/Pins to GPIO names in the code. 

I have iMXRT1050-EVKB which has 4 diodes. How can I turn on/off each one of them?

In the blinky example one of them is defined as EXAMPLE_LED_GPIO_PIN

GPIO_PinWrite(EXAMPLE_LED_GPIO, EXAMPLE_LED_GPIO_PIN, 0U);

If I follow this define I find out that BOARD_USER_LED_PIN is defined as 9U.

0 Kudos
1 Solution
796 Views
jay_heng
NXP Employee
NXP Employee

You can find all res about MIMXRT1050-EVKB from below link:

https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1050-eva....

Yes, we don't detailed mappings of LEDs/SWs/Pins to GPIO names as STM, you need to check board SCH to find details. and there is just one user LED on the board, other LEDs cannot be controlled by user (they are • Reset RED LED (D15), • OpenSDA LED (D16), etc)

View solution in original post

0 Kudos
2 Replies
797 Views
jay_heng
NXP Employee
NXP Employee

You can find all res about MIMXRT1050-EVKB from below link:

https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1050-eva....

Yes, we don't detailed mappings of LEDs/SWs/Pins to GPIO names as STM, you need to check board SCH to find details. and there is just one user LED on the board, other LEDs cannot be controlled by user (they are • Reset RED LED (D15), • OpenSDA LED (D16), etc)

0 Kudos
781 Views
bosnian_beast
Contributor III

This is what I was looking for. Thank you.

It is useful also for Arduino pinout. However, I found out that in ConfigTools, when I configure pins I can see labels like A0, A5... and D1...D13.

0 Kudos