Bug in lpc_board_nxp_lpcxpresso_4337/src/board.c gpioLEDBits

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Bug in lpc_board_nxp_lpcxpresso_4337/src/board.c gpioLEDBits

ソリューションへジャンプ
611件の閲覧回数
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 解決策
527件の閲覧回数
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 返信
528件の閲覧回数
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 件の賞賛
返信