FRDM-MCXW23 Hands-On: Hello World

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

FRDM-MCXW23 Hands-On: Hello World

FRDM-MCXW23 Hands-On: Hello World

Hands On

In this lab we will first import the MCUXpresso for Visual Studio Code SDK for the MCX W23 Freedom board into the MCUXpresso extension for Visual Studio Code and then we will build, flash and debug the hello world project to make sure the environment is set for the following Labs.

Hardware Requirements

  • Personal Computer
  • FRDM-MCXW23 Board
  • Type C USB Cable

Software Requirements

  • IDE: Visual Studio Code 1.91.1
  • Extension: MCUXpresso for VS Code v25.06.97 or newer
  • SDK: SDK next gen v25.06.00 or newer
  • Windows OS (Windows 11 was used for this hands-on)
  • Serial Terminal program, like PuTTY or Tera Term

Note:

In order to make downloads in NXP website, it is necessary to have an account. Please, register and log-in for moving forward.

MCUXpresso for Visual Studio Code

MCUXpresso for Visual Studio Code (VS Code) provides an optimized embedded developer experience for code editing and development. The extension enables NXP developers to use one of the most popular embedded editor tools and provides an easy and fast way to create, build and debug applications based on MCUXpresso SDK or Zephyr projects.  

            Install it following the next steps:

  1. Download Visual Studio Code from Microsoft Store or visual studio code web page Download Visual Studio Code - Mac, Linux, Windows
  2. Access to vscode for MCUX wiki and download MCUXpresso Installer  Dependency Installation · nxp-mcuxpresso/vscode-for-mcux Wiki · GitHub
  3. Run MCUXpresso Installer and for this Hands On install at least
    • MCUXpresso SDK Developer
    • Arm GNU Toolchain
    • PEmicro
neidys_vargas_0-1756082125297.png

 

Installing the FRDM-MCXW23 SDK v 25.06.00.

Each MCU has its own SDK that includes driver, examples, middleware, docs and other components. To get and build the demo, let’s install the SDK into VS Code:       

  1. Once MCUXpresso for Visual Studio Code is installed open VS Code.
  2. Go to MCUXpresso for VS Code extension that is on the tools column at the left.
  3. Look for INSTALLED REPOSITORIES option and press ‘+’. Detail steps are described in                                                                                                         neidys_vargas_1-1756082176005.png

     

  4. Search for Revision v25.06.00 or newer and complete installation.

Lab Section . Run Hello World Demo

  1. Open VSCode
  1. Go to MCUXpresso for VS Code extension that is on the tools column at the left.  neidys_vargas_2-1756082419884.png

     

  2. Go to PROJECTS section and select “Import Example Application from and Installed Repository”                                                                                                                                                                     neidys_vargas_3-1756082456878.png

     

  3. Select “frdmmcxw23_hello_world” project as freestanding as shown in the next image and create the project                                                                                                                                                  neidys_vargas_4-1756082474447.png

     

  4. Now you should have the “frdmmcxw23_hello_world” in your workspace.
  5. Before moving to the building and testing phase of the project, we want to do a small modification, go to line 39 of the hello_world.c file and change the line
PRINTF("hello world.\r\n");

to

PRINTF("hello world, this is MCXW23 from NXP Semiconductors.\r\n");

7.Build the projects clicking “Build Selected” icon to make sure the build process succeeds with zero errors and warnings or you can right click on the project’s name and press “Build Project button”.

neidys_vargas_5-1756082603535.png

 

  1. The build project process starts, follow its progress in the Console tab located in the bottom center of the window. If the build process will successfully end you will see something like “build finished successfully” in the Terminal window:
neidys_vargas_6-1756082628961.png

 

  1. To start the debug session, connect the FRDM-MCXW23 board debugger port to your host PC, using the USB A to USB C cable provided with the FRDM board as per the picture below on MCU-Link USB port and then the other end to a free USB port on the host PC.                                                                                neidys_vargas_7-1756082655898.png

     

  2. Open a Serial terminal on PC for the serial device with these settings on the two boards:

- 115200 baud rate

- No parity

- One stop bit

- No flow control

To identify the appropriate COM, open the Device Manager and look for MCU-Link VCom Port

neidys_vargas_8-1756082675468.png

 

  1. To start debugging, simply click on Debug icon or you can right click on projects name and press “Debug” Button.
neidys_vargas_9-1756082694034.png

 

  1. All is set to start debugging the project, click on “Continue” button or press “F5” key on your keyboard to continue running the downloaded program on device.
neidys_vargas_10-1756082715290.png

 

  1. The execution of the example starts and “hello world, this is MCXW23 from NXP Semiconductors.” is printed in the Terminal window as per the below picture:
neidys_vargas_11-1756082730700.png

 

  1. Enter any character + <enter> to see the examples echoes every character that is entered through the terminal.
  2. Click on the Stop button (red square) to end the debug session.

Congratulations you have successfully completed the hello world lab.

%3CLINGO-SUB%20id%3D%22lingo-sub-2157145%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3EFRDM-MCXW23%20Hands-On%3A%20Hello%20World%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2157145%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%0A%3CH1%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-1272815888%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-1297749869%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%225%22%3EHands%20On%3C%2FFONT%3E%3C%2FH1%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3EIn%20this%20lab%20we%20will%20first%20import%20the%20MCUXpresso%20for%20Visual%20Studio%20Code%20SDK%20for%20the%20MCX%20W23%20Freedom%20board%20into%20the%20MCUXpresso%20extension%20for%20Visual%20Studio%20Code%20and%20then%20we%20will%20build%2C%20flash%20and%20debug%20the%20hello%20world%20project%20to%20make%20sure%20the%20environment%20is%20set%20for%20the%20following%20Labs.%3C%2FFONT%3E%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-1963377362%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-1988311343%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%225%22%3EHardware%20Requirements%3C%2FFONT%3E%3C%2FH2%3E%0A%3CUL%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EPersonal%20Computer%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EFRDM-MCXW23%20Board%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EType%20C%20USB%20Cable%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-155922899%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-180856880%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%225%22%3ESoftware%20Requirements%3C%2FFONT%3E%3C%2FH2%3E%0A%3CUL%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EIDE%3A%20Visual%20Studio%20Code%201.91.1%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EExtension%3A%20%3CSTRONG%3EMCUXpresso%20for%20VS%20Code%20v25.06.97%20or%20newer%3C%2FSTRONG%3E%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3ESDK%3A%20SDK%20next%20gen%20v25.06.00%20or%20newer%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EWindows%20OS%20(Windows%2011%20was%20used%20for%20this%20hands-on)%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3E%3CSPAN%3ESerial%20Terminal%20program%2C%20like%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fwww.chiark.greenend.org.uk%2F~sgtatham%2Fputty%2Flatest.html%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%3EPuTTY%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%3E%20or%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fttssh2.osdn.jp%2Findex.html.en%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%3ETera%20Term%3C%2FSPAN%3E%3C%2FA%3E%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId--1651531564%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId--1626597583%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%222%22%3E%3CEM%3E%3CSTRONG%3ENote%3A%20%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FFONT%3E%3C%2FH2%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%222%22%3E%3CEM%3EIn%20order%20to%20make%20downloads%20in%20NXP%20website%2C%20it%20is%20necessary%20to%20have%20an%20account.%20Please%2C%20register%20and%20log-in%20for%20moving%20forward.%3C%2FEM%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-835981269%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-860915250%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%225%22%3EMCUXpresso%20for%20Visual%20Studio%20Code%3C%2FFONT%3E%3C%2FH2%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3EMCUXpresso%20for%20Visual%20Studio%20Code%20(VS%20Code)%20provides%20an%20optimized%20embedded%20developer%20experience%20for%20code%20editing%20and%20development.%20The%20extension%20enables%20NXP%20developers%20to%20use%20one%20of%20the%20most%20popular%20embedded%20editor%20tools%20and%20provides%20an%20easy%20and%20fast%20way%20to%20create%2C%20build%20and%20debug%20applications%20based%20on%20MCUXpresso%20SDK%20or%20Zephyr%20projects.%26nbsp%3B%26nbsp%3B%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Install%20it%20following%20the%20next%20steps%3A%3C%2FFONT%3E%3C%2FP%3E%0A%3COL%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EDownload%20Visual%20Studio%20Code%20from%20Microsoft%20Store%20or%20visual%20studio%20code%20web%20page%20%3CA%20href%3D%22https%3A%2F%2Fcode.visualstudio.com%2Fdownload%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3EDownload%20Visual%20Studio%20Code%20-%20Mac%2C%20Linux%2C%20Windows%3C%2FA%3E%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EAccess%20to%20vscode%20for%20MCUX%20wiki%20and%20download%20MCUXpresso%20Installer%26nbsp%3B%20%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2Fnxp-mcuxpresso%2Fvscode-for-mcux%2Fwiki%2FDependency-Installation%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3EDependency%20Installation%20%C2%B7%20nxp-mcuxpresso%2Fvscode-for-mcux%20Wiki%20%C2%B7%20GitHub%3C%2FA%3E%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3ERun%20MCUXpresso%20Installer%20and%20for%20this%20Hands%20On%20install%20at%20least%3C%2FFONT%3E%0A%3CUL%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EMCUXpresso%20SDK%20Developer%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EArm%20GNU%20Toolchain%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EPEmicro%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_0-1756082125297.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_0-1756082125297.png%22%20style%3D%22width%3A%20975px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353787iDEC6C6AEAF49564C%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_0-1756082125297.png%22%20alt%3D%22neidys_vargas_0-1756082125297.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId--971473194%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId--946539213%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%225%22%3EInstalling%20the%20FRDM-MCXW23%20SDK%20v%2025.06.00.%3C%2FFONT%3E%3C%2FH2%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3EEach%20MCU%20has%20its%20own%20SDK%20that%20includes%20driver%2C%20examples%2C%20middleware%2C%20docs%20and%20other%20components.%20To%20get%20and%20build%20the%20demo%2C%20let%E2%80%99s%20install%20the%20SDK%20into%20VS%20Code%3A%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%3C%2FFONT%3E%3C%2FP%3E%0A%3COL%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EOnce%20MCUXpresso%20for%20Visual%20Studio%20Code%20is%20installed%20open%20VS%20Code.%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EGo%20to%20MCUXpresso%20for%20VS%20Code%20extension%20that%20is%20on%20the%20tools%20column%20at%20the%20left.%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3E%3CFONT%20size%3D%224%22%3ELook%20for%20INSTALLED%20REPOSITORIES%20option%20and%20press%20%E2%80%98%2B%E2%80%99.%20Detail%20steps%20are%20described%20in%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%3C%2FFONT%3E%3C%2FFONT%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_1-1756082176005.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_1-1756082176005.png%22%20style%3D%22width%3A%2070px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353788iA359246D1833B787%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_1-1756082176005.png%22%20alt%3D%22neidys_vargas_1-1756082176005.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3CUL%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EUse%20the%20steps%20for%20import%20a%20remote%20Git%20repository%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3Ewiki%20page.%20%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2Fnxp-mcuxpresso%2Fvscode-for-mcux%2Fwiki%2FWorking-with-MCUXpresso-SDK%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3EWorking%20with%20MCUXpresso%20SDK%20%C2%B7%20nxp-mcuxpresso%2Fvscode-for-mcux%20Wiki%20%C2%B7%20GitHub%3C%2FA%3E%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3ESearch%20for%20Revision%20v25.06.00%20or%20newer%20and%20complete%20installation.%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CP%3E%3CFONT%20size%3D%225%22%3E%3CSTRONG%3ELab%20Section%20.%20Run%20Hello%20World%20Demo%3C%2FSTRONG%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3COL%3E%0A%3CLI%3EOpen%20VSCode%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%222%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3EGo%20to%20MCUXpresso%20for%20VS%20Code%20extension%20that%20is%20on%20the%20tools%20column%20at%20the%20left.%26nbsp%3B%26nbsp%3B%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_2-1756082419884.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_2-1756082419884.png%22%20style%3D%22width%3A%2070px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353791i0272E73E85FAE442%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_2-1756082419884.png%22%20alt%3D%22neidys_vargas_2-1756082419884.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3EGo%20to%20PROJECTS%20section%20and%20select%20%E2%80%9CImport%20Example%20Application%20from%20and%20Installed%20Repository%E2%80%9D%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_3-1756082456878.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_3-1756082456878.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353792iE2340644DFB94ECC%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_3-1756082456878.png%22%20alt%3D%22neidys_vargas_3-1756082456878.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3ESelect%20%E2%80%9Cfrdmmcxw23_hello_world%E2%80%9D%20project%20as%20freestanding%20as%20shown%20in%20the%20next%20image%20and%20create%20the%20project%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%26nbsp%3B%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_4-1756082474447.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_4-1756082474447.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353793i235D603284657AEC%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_4-1756082474447.png%22%20alt%3D%22neidys_vargas_4-1756082474447.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3ENow%20you%20should%20have%20the%20%E2%80%9Cfrdmmcxw23_hello_world%E2%80%9D%20in%20your%20workspace.%3C%2FLI%3E%0A%3CLI%3EBefore%20moving%20to%20the%20building%20and%20testing%20phase%20of%20the%20project%2C%20we%20want%20to%20do%20a%20small%20modification%2C%20go%20to%20line%2039%20of%20the%20hello_world.c%20file%20and%20change%20the%20line%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CPRE%20class%3D%22lia-code-sample%20language-markup%22%3E%3CCODE%3EPRINTF(%22hello%20world.%5Cr%5Cn%22)%3B%3C%2FCODE%3E%3C%2FPRE%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3Eto%3C%2FFONT%3E%3C%2FP%3E%0A%3CPRE%20class%3D%22lia-code-sample%20language-markup%22%3E%3CCODE%3EPRINTF(%22hello%20world%2C%20this%20is%20MCXW23%20from%20NXP%20Semiconductors.%5Cr%5Cn%22)%3B%3C%2FCODE%3E%3C%2FPRE%3E%0A%3CP%3E7.Build%20the%20projects%20clicking%20%E2%80%9CBuild%20Selected%E2%80%9D%20icon%20to%20make%20sure%20the%20build%20process%20succeeds%20with%20zero%20errors%20and%20warnings%20or%20you%20can%20right%20click%20on%20the%20project%E2%80%99s%20name%20and%20press%20%E2%80%9CBuild%20Project%20button%E2%80%9D.%3C%2FP%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_5-1756082603535.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_5-1756082603535.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353794i3F196E786F9BB3CD%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_5-1756082603535.png%22%20alt%3D%22neidys_vargas_5-1756082603535.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%228%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EThe%20build%20project%20process%20starts%2C%20follow%20its%20progress%20in%20the%20Console%20tab%20located%20in%20the%20bottom%20center%20of%20the%20window.%20If%20the%20build%20process%20will%20successfully%20end%20you%20will%20see%20something%20like%20%E2%80%9Cbuild%20finished%20successfully%E2%80%9D%20in%20the%20Terminal%20window%3A%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_6-1756082628961.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_6-1756082628961.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353795iAB2F50AC86ED2B63%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_6-1756082628961.png%22%20alt%3D%22neidys_vargas_6-1756082628961.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%229%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3E%3CFONT%20size%3D%224%22%3ETo%20start%20the%20debug%20session%2C%20connect%20the%20FRDM-MCXW23%20board%20debugger%20port%20to%20your%20host%20PC%2C%20using%20the%20USB%20A%20to%20USB%20C%20cable%20provided%20with%20the%20FRDM%20board%20as%20per%20the%20picture%20below%20on%20MCU-Link%20USB%20port%20and%20then%20the%20other%20end%20to%20a%20free%20USB%20port%20on%20the%20host%20PC.%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%20%26nbsp%3B%26nbsp%3B%3C%2FFONT%3E%3C%2FFONT%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_7-1756082655898.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_7-1756082655898.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353796iC77078638807A36F%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_7-1756082655898.png%22%20alt%3D%22neidys_vargas_7-1756082655898.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EOpen%20a%20Serial%20terminal%20on%20PC%20for%20the%20serial%20device%20with%20these%20settings%20on%20the%20two%20boards%3A%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3E-%20115200%20baud%20rate%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3E-%20No%20parity%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3E-%20One%20stop%20bit%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3E-%20No%20flow%20control%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3ETo%20identify%20the%20appropriate%20COM%2C%20open%20the%20Device%20Manager%20and%20look%20for%20MCU-Link%20VCom%20Port%3C%2FFONT%3E%3C%2FP%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_8-1756082675468.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_8-1756082675468.png%22%20style%3D%22width%3A%20306px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353797i6D218D876B7DCFDE%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_8-1756082675468.png%22%20alt%3D%22neidys_vargas_8-1756082675468.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%2211%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3ETo%20start%20debugging%2C%20simply%20click%20on%20Debug%20icon%20or%20you%20can%20right%20click%20on%20projects%20name%20and%20press%20%E2%80%9CDebug%E2%80%9D%20Button.%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_9-1756082694034.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_9-1756082694034.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353798i1F0C05AB7859F067%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_9-1756082694034.png%22%20alt%3D%22neidys_vargas_9-1756082694034.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%2212%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EAll%20is%20set%20to%20start%20debugging%20the%20project%2C%20click%20on%20%E2%80%9CContinue%E2%80%9D%20button%20or%20press%20%E2%80%9CF5%E2%80%9D%20key%20on%20your%20keyboard%20to%20continue%20running%20the%20downloaded%20program%20on%20device.%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_10-1756082715290.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_10-1756082715290.png%22%20style%3D%22width%3A%20247px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353799iFC8EA478B17AE839%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_10-1756082715290.png%22%20alt%3D%22neidys_vargas_10-1756082715290.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%2213%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EThe%20execution%20of%20the%20example%20starts%20and%20%E2%80%9Chello%20world%2C%20this%20is%20MCXW23%20from%20NXP%20Semiconductors.%E2%80%9D%20is%20printed%20in%20the%20Terminal%20window%20as%20per%20the%20below%20picture%3A%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_11-1756082730700.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_11-1756082730700.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353800i0F2B7C2FE7FC2C5E%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_11-1756082730700.png%22%20alt%3D%22neidys_vargas_11-1756082730700.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%2214%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EEnter%20any%20character%20%2B%20%3CENTER%3E%20to%20see%20the%20examples%20echoes%20every%20character%20that%20is%20entered%20through%20the%20terminal.%3C%2FENTER%3E%3C%2FFONT%3E%3C%2FLI%3E%0A%3CLI%3E%3CFONT%20size%3D%224%22%3EClick%20on%20the%20Stop%20button%20(red%20square)%20to%20end%20the%20debug%20session.%3C%2FFONT%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CEM%3E%3CSTRONG%3E%3CFONT%20size%3D%224%22%3ECongratulations%20you%20have%20successfully%20completed%20the%20hello%20world%20lab.%3C%2FFONT%3E%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%0A%3CP%20class%3D%22lia-align-justify%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CEM%3E%3CSTRONG%3E%3CFONT%20size%3D%224%22%3E%3C%2FFONT%3E%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CDIV%20class%3D%22lia-vid-container%20video-embed-center%22%3E%3CDIV%20id%3D%22lia-vid-6377334289112w960h540r557%22%20class%3D%22lia-video-brightcove-player-container%22%3E%3CVIDEO-JS%20data-video-id%3D%226377334289112%22%20data-account%3D%226153537070001%22%20data-player%3D%22default%22%20data-embed%3D%22default%22%20class%3D%22vjs-fluid%22%20controls%3D%22%22%20data-application-id%3D%22%22%20style%3D%22width%3A%20100%25%3B%20height%3A%20100%25%3B%22%3E%3C%2FVIDEO-JS%3E%3C%2FDIV%3E%3CSCRIPT%20src%3D%22https%3A%2F%2Fplayers.brightcove.net%2F6153537070001%2Fdefault_default%2Findex.min.js%22%3E%3C%2FSCRIPT%3E%3CA%20class%3D%22video-embed-link%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fvideo%2Fgallerypage%2Fvideo-id%2F6377334289112%22%20target%3D%22_blank%22%3E(view%20in%20My%20Videos)%3C%2FA%3E%3C%2FDIV%3E%3CP%3E%3C%2FP%3E%0A%3C%2FLINGO-BODY%3E%3CLINGO-LABS%20id%3D%22lingo-labs-2157145%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CLINGO-LABEL%3EFRDM-MCXW23%3C%2FLINGO-LABEL%3E%3CLINGO-LABEL%3EFRDM-Training%3C%2FLINGO-LABEL%3E%3CLINGO-LABEL%3EHands-On%20Training%3C%2FLINGO-LABEL%3E%3CLINGO-LABEL%3EMCU%3C%2FLINGO-LABEL%3E%3CLINGO-LABEL%3EMCX%20W23%3C%2FLINGO-LABEL%3E%3CLINGO-LABEL%3EWireless%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E
No ratings
Version history
Last update:
‎08-24-2025 05:47 PM
Updated by: