Skip to content

Commit bfad9a0

Browse files
peterwangszZhaoxiangJin
authored andcommitted
boards: nxp: Renamed MCXA276 to MCXA266
1. Renamed MCXA276 to MCXA266 2. NXP frdm_mcxa276 is renamed to frdm_mcxa266, add this information to migration-guide-4.3.rst. Signed-off-by: Peter Wang <[email protected]>
1 parent e4bc147 commit bfad9a0

File tree

36 files changed

+65
-65
lines changed

36 files changed

+65
-65
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2025 NXP
22
# SPDX-License-Identifier: Apache-2.0
33

4-
config BOARD_FRDM_MCXA276
4+
config BOARD_FRDM_MCXA266
55
select BOARD_EARLY_INIT_HOOK
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright 2025 NXP
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
config BOARD_FRDM_MCXA266
5+
select SOC_MCXA266
6+
select SOC_PART_NUMBER_MCXA266VLQ
File renamed without changes.

boards/nxp/frdm_mcxa276/board.cmake renamed to boards/nxp/frdm_mcxa266/board.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
board_runner_args(jlink "--device=MCXA276")
8-
board_runner_args(linkserver "--device=MCXA276:FRDM-MCXA276")
9-
board_runner_args(pyocd "--target=mcxA276")
7+
board_runner_args(jlink "--device=MCXA266")
8+
board_runner_args(linkserver "--device=MCXA266:FRDM-MCXA266")
9+
board_runner_args(pyocd "--target=mcxa266")
1010

1111
include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake)
1212
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)

boards/nxp/frdm_mcxa266/board.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
board:
2+
name: frdm_mcxa266
3+
full_name: FRDM-MCXA266
4+
vendor: nxp
5+
socs:
6+
- name: mcxa266

boards/nxp/frdm_mcxa276/doc/index.rst renamed to boards/nxp/frdm_mcxa266/doc/index.rst

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
.. zephyr:board:: frdm_mcxa276
1+
.. zephyr:board:: frdm_mcxa266
22
33
Overview
44
********
55

6-
FRDM-MCXA276 are compact and scalable development boards for rapid prototyping of
6+
FRDM-MCXA266 are compact and scalable development boards for rapid prototyping of
77
MCX A27X MCUs. They offer industry standard headers for easy access to the MCUs I/Os,
88
integrated open-standard serial interfaces and an on-board MCU-Link debugger.
99
MCX A Series are high-performance, low-power microcontrollers with MAU,SmartDMA and performance efficiency.
@@ -18,15 +18,15 @@ Hardware
1818
- On-board MCU-Link debugger with CMSIS-DAP
1919
- Arduino Header, SmartDMA/Camera Header, mikroBUS
2020

21-
For more information about the MCX-A276 SoC and FRDM-MCXA276 board, see:
21+
For more information about the MCX-A276 SoC and FRDM-MCXA266 board, see:
2222

2323
- `MCX-A276 SoC Website`_
2424
- `MCX-A276 Datasheet`_
2525
- `MCX-A276 Reference Manual`_
26-
- `FRDM-MCXA276 Website`_
27-
- `FRDM-MCXA276 User Guide`_
28-
- `FRDM-MCXA276 Board User Manual`_
29-
- `FRDM-MCXA276 Schematics`_
26+
- `FRDM-MCXA266 Website`_
27+
- `FRDM-MCXA266 User Guide`_
28+
- `FRDM-MCXA266 Board User Manual`_
29+
- `FRDM-MCXA266 Schematics`_
3030

3131
Supported Features
3232
==================
@@ -56,7 +56,7 @@ the system clock.
5656
Serial Port
5757
===========
5858

59-
The FRDM-MCXA276 SoC has 6 LPUART interfaces for serial communication.
59+
The FRDM-MCXA266 SoC has 6 LPUART interfaces for serial communication.
6060
LPUART 2 is configured as UART for the console.
6161

6262
Programming and Debugging
@@ -121,7 +121,7 @@ Here is an example for the :zephyr:code-sample:`hello_world` application.
121121

122122
.. zephyr-app-commands::
123123
:zephyr-app: samples/hello_world
124-
:board: frdm_mcxa276
124+
:board: frdm_mcxa266
125125
:goals: flash
126126

127127
Open a serial terminal, reset the board (press the RESET button), and you should
@@ -130,7 +130,7 @@ see the following message in the terminal:
130130
.. code-block:: console
131131
132132
*** Booting Zephyr OS build v3.6.0-4478-ge6c3a42f5f52 ***
133-
Hello World! frdm_mcxa276/mcxa276
133+
Hello World! frdm_mcxa266/mcxa266
134134
135135
Debugging
136136
=========
@@ -139,7 +139,7 @@ Here is an example for the :zephyr:code-sample:`hello_world` application.
139139

140140
.. zephyr-app-commands::
141141
:zephyr-app: samples/hello_world
142-
:board: frdm_mcxa276/mcxa276
142+
:board: frdm_mcxa266/mcxa266
143143
:goals: debug
144144

145145
Open a serial terminal, step through the application in your debugger, and you
@@ -148,7 +148,7 @@ should see the following message in the terminal:
148148
.. code-block:: console
149149
150150
*** Booting Zephyr OS build v3.6.0-4478-ge6c3a42f5f52 ***
151-
Hello World! frdm_mcxa276/mcxa276
151+
Hello World! frdm_mcxa266/mcxa266
152152
153153
Troubleshooting
154154
===============
@@ -168,14 +168,14 @@ Troubleshooting
168168
.. _MCX-A276 Reference Manual:
169169
https://www.nxp.com/webapp/Download?colCode=MCXAP100M96FS6RM
170170

171-
.. _FRDM-MCXA276 Website:
172-
https://www.nxp.com/design/design-center/development-boards-and-designs/general-purpose-mcus/frdm-development-board-for-mcx-a144-5-6-a154-5-6-mcus:FRDM-MCXA276
171+
.. _FRDM-MCXA266 Website:
172+
https://www.nxp.com/design/design-center/development-boards-and-designs/general-purpose-mcus/frdm-development-board-for-mcx-a144-5-6-a154-5-6-mcus:FRDM-MCXA266
173173

174-
.. _FRDM-MCXA276 User Guide:
175-
https://www.nxp.com/document/guide/getting-started-with-frdm-mcxa276:GS-FRDM-MCXA276
174+
.. _FRDM-MCXA266 User Guide:
175+
https://www.nxp.com/document/guide/getting-started-with-frdm-mcxa266:GS-FRDM-MCXA266
176176

177-
.. _FRDM-MCXA276 Board User Manual:
177+
.. _FRDM-MCXA266 Board User Manual:
178178
https://www.nxp.com/docs/en/user-manual/UM12121.pdf
179179

180-
.. _FRDM-MCXA276 Schematics:
180+
.. _FRDM-MCXA266 Schematics:
181181
https://www.nxp.com/webapp/Download?colCode=SPF-90841

boards/nxp/frdm_mcxa276/frdm_mcxa276-pinctrl.dtsi renamed to boards/nxp/frdm_mcxa266/frdm_mcxa266-pinctrl.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66

7-
#include <nxp/mcx/MCXA276VLQ-pinctrl.h>
7+
#include <nxp/mcx/MCXA266VLQ-pinctrl.h>
88

99
&pinctrl {
1010
pinmux_lpuart2: pinmux_lpuart2 {

boards/nxp/frdm_mcxa276/frdm_mcxa276.dts renamed to boards/nxp/frdm_mcxa266/frdm_mcxa266.dts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
/dts-v1/;
88

9-
#include <nxp/nxp_mcxa276.dtsi>
10-
#include "frdm_mcxa276-pinctrl.dtsi"
9+
#include <nxp/nxp_mcxa266.dtsi>
10+
#include "frdm_mcxa266-pinctrl.dtsi"
1111
#include <zephyr/dt-bindings/input/input-event-codes.h>
1212
#include <freq.h>
1313

1414
/ {
15-
model = "NXP FRDM_MCXA276 board";
16-
compatible = "nxp,mcxa276", "nxp,mcx";
15+
model = "NXP FRDM_MCXA266 board";
16+
compatible = "nxp,mcxa266", "nxp,mcx";
1717

1818
aliases{
1919
led0 = &red_led;

0 commit comments

Comments
 (0)