Bug in lpc_board_nxp_lpcxpresso_4337/src/board.c gpioLEDBits

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Bug in lpc_board_nxp_lpcxpresso_4337/src/board.c gpioLEDBits

跳至解决方案
694 次查看
john_schooling
Contributor I

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.

标签 (2)
标记 (1)
0 项奖励
回复
1 解答
610 次查看
ZhangJennie
NXP TechSupport
NXP TechSupport

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.
-------------------------------------------------------------------------------

在原帖中查看解决方案

0 项奖励
回复
1 回复
611 次查看
ZhangJennie
NXP TechSupport
NXP TechSupport

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.
-------------------------------------------------------------------------------

0 项奖励
回复