The green LED does not work on LPCXpresso43xx board in projects using /src/board.c
gpioLEDBits[1].pin is set to 14. The correct value is 7. I.e. the green LED should be {port, pin} = {0, 7}.
The following line is incorrect:
static const io_port_t gpioLEDBits[] = {{3, 5}, {0, 14}, {3, 7}};
and should be replaced by:
static const io_port_t gpioLEDBits[] = {{3, 5}, {0, 7}, {3, 7}};
In (at least) the following downloadable projects (and multiple locations):
lpcopen_3_01_lpcxpresso_nxp_lpcxpresso_4337.zip
lpcopen_3_02_lpcxpresso_xpresso4337.zip
Please could you investigate and fix this.
Thanks.
解決済! 解決策の投稿を見る。
Hello John,
I verified your issue from my side. You are right.
I will escalate it to application team to fix it.
Thank you for bringing the problem to our attention.
Have a great day,
Jun Zhang
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
Hello John,
I verified your issue from my side. You are right.
I will escalate it to application team to fix it.
Thank you for bringing the problem to our attention.
Have a great day,
Jun Zhang
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------