FRDM-MCXW23 Hands-On: Low Power Reference Design Health Care IoT

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

FRDM-MCXW23 Hands-On: Low Power Reference Design Health Care IoT

FRDM-MCXW23 Hands-On: Low Power Reference Design Health Care IoT

Hands On

This hands-on describes how to run the Low Power Reference Design demo on FRDM-MCXW23. Two low-power reference design applications are provided in the reference design folder for the MCXW23:

  • Low power peripheral application demonstrating the low power feature on an advertiser peripheral Bluetooth LE device.
  • Low power central application demonstrating the low power feature on a scanner central Bluetooth LE device.

These applications aim at providing:

  • A reference design application for low power/timing optimization on a Bluetooth Low Energy application. These can be used in first intent for porting a new application on low power.
  • A way for measuring the power consumption, wake-up time, and active time in various power modes. The default low-power mode used in different modes are shown as follows:
  • CM33 (core main power domain) and RADIO (core radio power domain) could be active in of the state as follows:

– Sleep mode

– Deep-sleep mode

– Power-down mode

– Deep-power down mode

  • CM33 is woken up (core wake-up power domain) and performs system initialization and some pre-processing
  • RADIO woke-up and transceiver are ready to operate. If the software allows, the CM33 can enter in Inactive

mode:

  • The transceiver is performing one or more RX/TX sequences
  • CM33 is processing the received or transmitted packets
  • The transceiver is put back in Sleep mode
  • CM33 enters low-power (Deep-sleep mode)

 

Running the Health care IoT reference design application

Once the MCXW23 device is programmed with the low-power reference design demo project, and after a power cycle, it starts to advertise every 1000 mS as soon as the hardware and software initializations are completed.

When advertising stops the main domain and radio domain will go to Deep-sleep mode.

The MCU stays in this mode until the wake-up from one of the wake up sources. By default, the wake up sources are the wake up button, timer IRQ watchdog IRQ. At wake-up, the device starts to advertise immediately, just like waking up from a Power-On-Reset.

Running the low-power central reference design application

 

The application behavior is as follows:

At POR, start scanning immediately, scanning stops on connection establishment.

It establishes automatically a connection with a low-power reference design application (lp refdes app) or a temperature sensor by checking the temperature sensor service's UUID in the advertising message and retrieves the temperature value. Note that Low Power Reference Design needs to connect to the peripheral application having an RSSI value lower than the threshold, to accomplish this try to keep the boards close to each other at the beginning.

On disconnect, the Application core and radio core go to Deep Sleep mode with full RAM retention. If gAppRestartScanAfterConnect is set to 1, the radio core restarts the scan activity. Application core still goes to Deep Sleep mode between messages from CM3. SW2 button has no effect.

Shell over LPUART peripheral outputs scanning, connection information, and temperature value.

 

Hardware Requirements

 

  • FRDM-MCX23 Board x 2
  • Personal Computer
  • Type C USB Cable x 2
  • Ammeter to measure current (Optional)

 

Software Requirements

 

  • IDE: Visual Studio Code 1.91.1
  • SDK: SDK v2.16.100 for FRDM-MCXW71
  • SPSDK Tool
  • Windows OS (It was used Windows 10 for this hands-on)
  • NXP IoT Toolbox (For Android or iOS device)

Hardware changes to measure current

In order to measure the current consumption in FRDM-MCX23 we have the following options:

  1. Measure current in JP4. This will give you the overall consumption of the board, but this will not require hardware modifications.
  2. Measure current in JP1. This is the current for peripheral circuits in the board. For this option JP1 must be populated and SH200 must be cut.
  3. Measure current in JP2. This is the MCU current consumption. For this option JP2 must be populated and SH201 must be cut.  
neidys_vargas_0-1756083149714.png

 

For this hand on we will measure current in JP2 to get the MCU consumptions in low power.  

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_1-1756083205207.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_2-1756083260203.png

     

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

 

Installing SPSDK.

The SPSDK is a unified, reliable, and easy to use Python SDK library working across the NXP MCU portfolio providing a strong foundation from quick customer prototyping up to production deployment. The library allows the user to connect and communicate with the device, configure the device, prepare, download, and upload data including security operations.

Follow next steps for installation:

  1. Create python virtual environment.
  • Open a Command Prompt window
  • Write 
    python -m venv <name>​
  1. Active the virtual environment:
cd <name>

cd Scripts

activate
  1. Make sure that your prompt starts with the selected “<name>”                                                                      neidys_vargas_3-1756083324918.png

     

  2. Install SPSDK from Github into your Python virtual environment.
pip install -U spsdk
  1. Wait until the installation is completed.
  2. From now on you can use the virtual environment when it is needed, just open cmd open the Scripts or bin folder and write activate as in previous steps.

Make a Full flash erase using Blhost SPSDK.

  1. Open SPSDK virtual environment
  • Open a command prompt
  • Change directory to open Scripts folder under SPSDK virtual environment
  • Write activate
  • Make sure your prompt starts with virtual environment name                                                           neidys_vargas_4-1756083433688.png

     

  1. Move command prompt to Virtual environment folder                                                                                       neidys_vargas_5-1756083464256.png

     

  2. Open Device Manager to check the MCU-Link COM                                                                                                     neidys_vargas_6-1756083481622.png

     

  3. In your board set the jumpers JP13 and JP14 to connect pin 2 to 3.                                                                       neidys_vargas_7-1756083505803.png

     

  4. Plug your board to your computers USB port, then press SW3, while keep pressing SW3 press Reset button (SW1) for a second, then make sure to release SW1 first, then release SW5.                                                                                                                                                neidys_vargas_8-1756083529345.png

     

  5. Use Blhost command to make sure board communication is set up correctly                             a.
    >blhost -p comxx get-property 1      ​
    neidys_vargas_9-1756083630310.png

     

    7. Use this Blhost command to erase your on-board flash                                                               b.
    >blhost -p comxx flash-erase-all     ​
    neidys_vargas_10-1756083647911.png

     

    8. Restore JP13 and JP14 to connect to pin 1 to 2

neidys_vargas_11-1756083677728.png

 

Section 1. Run Low Power Reference Design

  1. Open VS code
  2. Go to MCUXpresso for VS Code extension that is on the tools column at the left.
  3. Go to PROJECTS section and select “Import Example Application from and Installed Repository”                                                                                                                                                                                          neidys_vargas_12-1756083800781.png neidys_vargas_13-1756083830860.png

     

  4. Select “frdmmcxw23_health_care_iot_peripheral_bm” project as in the next image and create the project                                                                                                                                       neidys_vargas_14-1756083864023.png

     

  5. Repeat previous step for “frdmmcxw23_health_care_iot_central”

  6. Go back to Projects view and build the projects clicking “Build Selected” icon                                        

    neidys_vargas_15-1756083978847.png
  1. Connect USB cable to MCU-LINK (J10) connector on both boards
  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_16-1756084026487.png

 

9. Select “frdmmcxw23_health_car_iot_central” and click on debug to flash the code into one board

neidys_vargas_17-1756084148676.png

 

  1. Click on “Continue” button or press “F5” key on your keyboard to continue running the downloaded program on device.
neidys_vargas_18-1756084177360.png

11. Click on “Stop” button or press “Shift + F5” to terminate the debug session. 

neidys_vargas_20-1756084238838.png

 

 

 

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

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

13. Repeat the steps from 9 to 11 with the "frdmmcxw23_health_care_iot_peripheral_bm" project into the second board

  1. Clean serial terminals
  2. Click SW1 button to reset the central board.
  3. Click SW5 button to start the Health care IoT peripheral demo.
  4. In the terminal you will see that the boards are communicating each other each second after the boards stablish connection.

Central Device

Peripheral Device

neidys_vargas_21-1756084297162.png

 

neidys_vargas_22-1756084306474.png

 

 

  1. As expected the Peripheral device connects to the central device send the temp information. The peripheral device will keep advertising each second to report temperature and battery status, after this time it goes to Deep sleep mode.
  2. The next step is to measure the current, connect the ammeter on JP2 in the peripheral device.
neidys_vargas_23-1756084355575.png

Figure 1 measuring an advertising interval

neidys_vargas_24-1756084450117.png

Figure 2 Board after pressing sw5

neidys_vargas_25-1756084478660.png

Figure 3 Board init services and start advertising until central scan connection

You can have more information about the Reference application Health Care IoT Central/Peripheral and how to modify the project to change adv interval or disable services on the application note:
AN14659 MCX W23 Bluetooth Low Energy Power Consumption Analysis

 

%3CLINGO-SUB%20id%3D%22lingo-sub-2157207%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3EFRDM-MCXW23%20Hands-On%3A%20Low%20Power%20Reference%20Design%20Health%20Care%20IoT%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2157207%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%0A%3CH1%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-1272816727%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-1297749930%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%3EThis%20hands-on%20describes%20how%20to%20run%20the%20Low%20Power%20Reference%20Design%20demo%20on%20FRDM-MCXW23.%20Two%20low-power%20reference%20design%20applications%20are%20provided%20in%20the%20reference%20design%20folder%20for%20the%20MCXW23%3A%3C%2FP%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%3ELow%20power%20peripheral%20application%20demonstrating%20the%20low%20power%20feature%20on%20an%20advertiser%20peripheral%20Bluetooth%20LE%20device.%3C%2FLI%3E%0A%3CLI%3ELow%20power%20central%20application%20demonstrating%20the%20low%20power%20feature%20on%20a%20scanner%20central%20Bluetooth%20LE%20device.%3C%2FLI%3E%0A%3C%2FUL%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%3EThese%20applications%20aim%20at%20providing%3A%3C%2FP%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%3EA%20reference%20design%20application%20for%20low%20power%2Ftiming%20optimization%20on%20a%20Bluetooth%20Low%20Energy%20application.%20These%20can%20be%20used%20in%20first%20intent%20for%20porting%20a%20new%20application%20on%20low%20power.%3C%2FLI%3E%0A%3CLI%3EA%20way%20for%20measuring%20the%20power%20consumption%2C%20wake-up%20time%2C%20and%20active%20time%20in%20various%20power%20modes.%20The%20default%20low-power%20mode%20used%20in%20different%20modes%20are%20shown%20as%20follows%3A%3C%2FLI%3E%0A%3C%2FUL%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%3ECM33%20(core%20main%20power%20domain)%20and%20RADIO%20(core%20radio%20power%20domain)%20could%20be%20active%20in%20of%20the%20state%20as%20follows%3A%3C%2FLI%3E%0A%3C%2FUL%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%E2%80%93%20Sleep%20mode%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%E2%80%93%20Deep-sleep%20mode%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%E2%80%93%20Power-down%20mode%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%E2%80%93%20Deep-power%20down%20mode%3C%2FP%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%3ECM33%20is%20woken%20up%20(core%20wake-up%20power%20domain)%20and%20performs%20system%20initialization%20and%20some%20pre-processing%3C%2FLI%3E%0A%3CLI%3ERADIO%20woke-up%20and%20transceiver%20are%20ready%20to%20operate.%20If%20the%20software%20allows%2C%20the%20CM33%20can%20enter%20in%20Inactive%3C%2FLI%3E%0A%3C%2FUL%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%3Emode%3A%3C%2FP%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%3EThe%20transceiver%20is%20performing%20one%20or%20more%20RX%2FTX%20sequences%3C%2FLI%3E%0A%3CLI%3ECM33%20is%20processing%20the%20received%20or%20transmitted%20packets%3C%2FLI%3E%0A%3CLI%3EThe%20transceiver%20is%20put%20back%20in%20Sleep%20mode%3C%2FLI%3E%0A%3CLI%3ECM33%20enters%20low-power%20(Deep-sleep%20mode)%3C%2FLI%3E%0A%3C%2FUL%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%26nbsp%3B%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-1963378201%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-1988311404%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CSTRONG%3ERunning%20the%20Health%20care%20IoT%20reference%20design%20application%3C%2FSTRONG%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%3EOnce%20the%20MCXW23%20device%20is%20programmed%20with%20the%20low-power%20reference%20design%20demo%20project%2C%20and%20after%20a%20power%20cycle%2C%20it%20starts%20to%20advertise%20every%201000%20mS%20as%20soon%20as%20the%20hardware%20and%20software%20initializations%20are%20completed.%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%3EWhen%20advertising%20stops%20the%20main%20domain%20and%20radio%20domain%20will%20go%20to%20Deep-sleep%20mode.%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%3EThe%20MCU%20stays%20in%20this%20mode%20until%20the%20wake-up%20from%20one%20of%20the%20wake%20up%20sources.%20By%20default%2C%20the%20wake%20up%20sources%20are%20the%20wake%20up%20button%2C%20timer%20IRQ%20watchdog%20IRQ.%20At%20wake-up%2C%20the%20device%20starts%20to%20advertise%20immediately%2C%20just%20like%20waking%20up%20from%20a%20Power-On-Reset.%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-155923738%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-180856941%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CSTRONG%3ERunning%20the%20low-power%20central%20reference%20design%20application%3C%2FSTRONG%3E%3C%2FH2%3E%0A%3CBR%20%2F%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%3EThe%20application%20behavior%20is%20as%20follows%3A%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%3EAt%20POR%2C%20start%20scanning%20immediately%2C%20scanning%20stops%20on%20connection%20establishment.%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%3EIt%20establishes%20automatically%20a%20connection%20with%20a%20low-power%20reference%20design%20application%20(lp%20refdes%20app)%20or%20a%20temperature%20sensor%20by%20checking%20the%20temperature%20sensor%20service's%20UUID%20in%20the%20advertising%20message%20and%20retrieves%20the%20temperature%20value.%20Note%20that%20Low%20Power%20Reference%20Design%20needs%20to%20connect%20to%20the%20peripheral%20application%20having%20an%20RSSI%20value%20lower%20than%20the%20threshold%2C%20to%20accomplish%20this%20try%20to%20keep%20the%20boards%20close%20to%20each%20other%20at%20the%20beginning.%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%3EOn%20disconnect%2C%20the%20Application%20core%20and%20radio%20core%20go%20to%20Deep%20Sleep%20mode%20with%20full%20RAM%20retention.%20If%20gAppRestartScanAfterConnect%20is%20set%20to%201%2C%20the%20radio%20core%20restarts%20the%20scan%20activity.%20Application%20core%20still%20goes%20to%20Deep%20Sleep%20mode%20between%20messages%20from%20CM3.%20SW2%20button%20has%20no%20effect.%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%3EShell%20over%20LPUART%20peripheral%20outputs%20scanning%2C%20connection%20information%2C%20and%20temperature%20value.%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%26nbsp%3B%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId--1651530725%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId--1626597522%22%20style%3D%22text-align%20%3A%20justify%3B%22%3EHardware%20Requirements%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%26nbsp%3B%3C%2FP%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%3EFRDM-MCX23%20Board%20x%202%3C%2FLI%3E%0A%3CLI%3EPersonal%20Computer%3C%2FLI%3E%0A%3CLI%3EType%20C%20USB%20Cable%20x%202%3C%2FLI%3E%0A%3CLI%3EAmmeter%20to%20measure%20current%20(Optional)%3C%2FLI%3E%0A%3C%2FUL%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%3CSTRONG%3E%26nbsp%3B%3C%2FSTRONG%3E%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-835982108%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-860915311%22%20style%3D%22text-align%20%3A%20justify%3B%22%3ESoftware%20Requirements%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%26nbsp%3B%3C%2FP%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%3EIDE%3A%20Visual%20Studio%20Code%201.91.1%3C%2FLI%3E%0A%3CLI%3ESDK%3A%20SDK%20v2.16.100%20for%20FRDM-MCXW71%3C%2FLI%3E%0A%3CLI%3ESPSDK%20Tool%3C%2FLI%3E%0A%3CLI%3EWindows%20OS%20(It%20was%20used%20Windows%2010%20for%20this%20hands-on)%3C%2FLI%3E%0A%3CLI%3ENXP%20IoT%20Toolbox%20(For%20%3CA%20href%3D%22https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.freescale.kinetisbletoolbox%26amp%3Bhl%3Den_US%26amp%3Bpli%3D1%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3EAndroid%3C%2FA%3E%20or%20%3CA%20href%3D%22https%3A%2F%2Fapps.apple.com%2Fus%2Fapp%2Fiot-toolbox%2Fid1362450908%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3EiOS%3C%2FA%3E%20device)%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CH1%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-825479004%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-850412207%22%20style%3D%22text-align%20%3A%20justify%3B%22%3EHardware%20changes%20to%20measure%20current%3C%2FH1%3E%0A%3CP%3EIn%20order%20to%20measure%20the%20current%20consumption%20in%20FRDM-MCX23%20we%20have%20the%20following%20options%3A%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%3EMeasure%20current%20in%20JP4.%20This%20will%20give%20you%20the%20overall%20consumption%20of%20the%20board%2C%20but%20this%20will%20not%20require%20hardware%20modifications.%3C%2FLI%3E%0A%3CLI%3EMeasure%20current%20in%20JP1.%20This%20is%20the%20current%20for%20peripheral%20circuits%20in%20the%20board.%20For%20this%20option%20JP1%20must%20be%20populated%20and%20SH200%20must%20be%20cut.%3C%2FLI%3E%0A%3CLI%3EMeasure%20current%20in%20JP2.%20This%20is%20the%20MCU%20current%20consumption.%20For%20this%20option%20JP2%20must%20be%20populated%20and%20SH201%20must%20be%20cut.%26nbsp%3B%26nbsp%3B%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-1756083149714.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-1756083149714.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353828i4CF1082D61E3B36A%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_0-1756083149714.png%22%20alt%3D%22neidys_vargas_0-1756083149714.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%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%26nbsp%3B%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%3EFor%20this%20hand%20on%20we%20will%20measure%20current%20in%20JP2%20to%20get%20the%20MCU%20consumptions%20in%20low%20power.%26nbsp%3B%26nbsp%3B%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-1516040478%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-1540973681%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CEM%3E%3CFONT%20size%3D%222%22%3E%3CSTRONG%3ENote%3A%20%3C%2FSTRONG%3E%3C%2FFONT%3E%3C%2FEM%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%3CEM%3E%3CFONT%20size%3D%222%22%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%2FFONT%3E%3C%2FEM%3E%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId--291413985%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId--266480782%22%20style%3D%22text-align%20%3A%20justify%3B%22%3EMCUXpresso%20for%20Visual%20Studio%20Code%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%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%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%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%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%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%2FLI%3E%0A%3CLI%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%2FLI%3E%0A%3CLI%3ERun%20MCUXpresso%20Installer%20and%20for%20this%20Hands%20On%20install%20at%20least%0A%3CUL%3E%0A%3CLI%3EMCUXpresso%20SDK%20Developer%3C%2FLI%3E%0A%3CLI%3EArm%20GNU%20Toolchain%3C%2FLI%3E%0A%3CLI%3EPEmicro%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_1-1756083205207.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-1756083205207.png%22%20style%3D%22width%3A%20975px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353829i66C0F6592C05B1DD%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_1-1756083205207.png%22%20alt%3D%22neidys_vargas_1-1756083205207.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%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%225%22%3E%3CSTRONG%3EInstalling%20the%20FRDM-MCXW23%20SDK%20v%2025.06.00.%3C%2FSTRONG%3E%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%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%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%3EOnce%20MCUXpresso%20for%20Visual%20Studio%20Code%20is%20installed%20open%20VS%20Code.%3C%2FLI%3E%0A%3CLI%3EGo%20to%20MCUXpresso%20for%20VS%20Code%20extension%20that%20is%20on%20the%20tools%20column%20at%20the%20left.%3C%2FLI%3E%0A%3CLI%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%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_2-1756083260203.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_2-1756083260203.png%22%20style%3D%22width%3A%2070px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353830i512A8E7D9DDA4E6D%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_2-1756083260203.png%22%20alt%3D%22neidys_vargas_2-1756083260203.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3CUL%3E%0A%3CLI%3EUse%20the%20steps%20for%20import%20a%20remote%20Git%20repository%3C%2FLI%3E%0A%3CLI%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%2FLI%3E%0A%3C%2FUL%3E%0A%3C%2FLI%3E%0A%3CLI%3ESearch%20for%20Revision%20v25.06.00%20or%20newer%20and%20complete%20installation.%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%26nbsp%3B%3C%2FP%3E%0A%3CH2%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId--2098868448%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId--2073935245%22%20style%3D%22text-align%20%3A%20justify%3B%22%3EInstalling%20SPSDK.%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%3CSPAN%3EThe%20SPSDK%20is%20a%20unified%2C%20reliable%2C%20and%20easy%20to%20use%20Python%20SDK%20library%20working%20across%20the%20NXP%20MCU%20portfolio%20providing%20a%20strong%20foundation%20from%20quick%20customer%20prototyping%20up%20to%20production%20deployment.%20%3C%2FSPAN%3E%3CSPAN%3EThe%20library%20allows%20the%20user%20to%20connect%20and%20communicate%20with%20the%20device%2C%20configure%20the%20device%2C%20prepare%2C%20download%2C%20and%20upload%20data%20including%20security%20operations.%3C%2FSPAN%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%3CSPAN%3EFollow%20next%20steps%20for%20installation%3A%3C%2FSPAN%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%3ECreate%20python%20virtual%20environment.%3C%2FLI%3E%0A%3C%2FOL%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%3EOpen%20a%20Command%20Prompt%20window%3C%2FLI%3E%0A%3CLI%3EWrite%26nbsp%3B%3CPRE%20class%3D%22lia-code-sample%20language-python%22%3E%3CCODE%3Epython%20-m%20venv%20%3CNAME%3E%E2%80%8B%3C%2FNAME%3E%3C%2FCODE%3E%3C%2FPRE%3E%3C%2FLI%3E%0A%3C%2FUL%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%3EActive%20the%20virtual%20environment%3A%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CPRE%20class%3D%22lia-code-sample%20language-python%22%3E%3CCODE%3Ecd%20%3CNAME%3E%0A%0Acd%20Scripts%0A%0Aactivate%3C%2FNAME%3E%3C%2FCODE%3E%3C%2FPRE%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%223%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3EMake%20sure%20that%20your%20prompt%20starts%20with%20the%20selected%20%E2%80%9C%3CNAME%3E%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%26nbsp%3B%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_3-1756083324918.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-1756083324918.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353831iA08FED09F42C393D%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_3-1756083324918.png%22%20alt%3D%22neidys_vargas_3-1756083324918.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FNAME%3E%3C%2FLI%3E%0A%3CLI%3EInstall%20SPSDK%20from%20Github%20into%20your%20Python%20virtual%20environment.%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CPRE%20class%3D%22lia-code-sample%20language-python%22%3E%3CCODE%3Epip%20install%20-U%20spsdk%3C%2FCODE%3E%3C%2FPRE%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%225%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3EWait%20until%20the%20installation%20is%20completed.%3C%2FLI%3E%0A%3CLI%3EFrom%20now%20on%20you%20can%20use%20the%20virtual%20environment%20when%20it%20is%20needed%2C%20just%20open%20cmd%20open%20the%20Scripts%20or%20bin%20folder%20and%20write%20activate%20as%20in%20previous%20steps.%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CH1%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId--2109371552%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId--2084438349%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%224%22%3EMake%20a%20Full%20flash%20erase%20using%20Blhost%20SPSDK.%3C%2FFONT%3E%3C%2FH1%3E%0A%3COL%3E%0A%3CLI%3EOpen%20SPSDK%20virtual%20environment%3C%2FLI%3E%0A%3C%2FOL%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%3EOpen%20a%20command%20prompt%3C%2FLI%3E%0A%3CLI%3EChange%20directory%20to%20open%20Scripts%20folder%20under%20SPSDK%20virtual%20environment%3C%2FLI%3E%0A%3CLI%3EWrite%20activate%3C%2FLI%3E%0A%3CLI%3EMake%20sure%20your%20prompt%20starts%20with%20virtual%20environment%20name%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_4-1756083433688.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-1756083433688.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353832i4731241666E90D40%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_4-1756083433688.png%22%20alt%3D%22neidys_vargas_4-1756083433688.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3C%2FUL%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%3EMove%20command%20prompt%20to%20Virtual%20environment%20folder%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_5-1756083464256.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-1756083464256.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353833i8F18A614E97AC4E3%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_5-1756083464256.png%22%20alt%3D%22neidys_vargas_5-1756083464256.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3EOpen%20Device%20Manager%20to%20check%20the%20MCU-Link%20COM%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_6-1756083481622.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-1756083481622.png%22%20style%3D%22width%3A%20301px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353834iF0F81F85F63589E9%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_6-1756083481622.png%22%20alt%3D%22neidys_vargas_6-1756083481622.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3EIn%20your%20board%20set%20the%20jumpers%20JP13%20and%20JP14%20to%20connect%20pin%202%20to%203.%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_7-1756083505803.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-1756083505803.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353835i5B12710680111D1D%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_7-1756083505803.png%22%20alt%3D%22neidys_vargas_7-1756083505803.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3EPlug%20your%20board%20to%20your%20computers%20USB%20port%2C%20then%20press%20SW3%2C%20while%20keep%20pressing%20SW3%20press%20Reset%20button%20(SW1)%20for%20a%20second%2C%20then%20make%20sure%20to%20release%20SW1%20first%2C%20then%20release%20SW5.%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_8-1756083529345.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-1756083529345.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353836i51193E64FE8E256B%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_8-1756083529345.png%22%20alt%3D%22neidys_vargas_8-1756083529345.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3EUse%20Blhost%20command%20to%20make%20sure%20board%20communication%20is%20set%20up%20correctly%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%3Ba.%3CPRE%20class%3D%22lia-code-sample%20language-python%22%3E%3CCODE%3E%26gt%3Bblhost%20-p%20comxx%20get-property%201%20%20%20%20%20%20%E2%80%8B%3C%2FCODE%3E%3C%2FPRE%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_9-1756083630310.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-1756083630310.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353837iB9069DC6878B7CC6%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_9-1756083630310.png%22%20alt%3D%22neidys_vargas_9-1756083630310.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A7.%20Use%20this%20Blhost%20command%20to%20erase%20your%20on-board%20flash%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%3Bb.%3CPRE%20class%3D%22lia-code-sample%20language-python%22%3E%3CCODE%3E%26gt%3Bblhost%20-p%20comxx%20flash-erase-all%20%20%20%20%20%E2%80%8B%3C%2FCODE%3E%3C%2FPRE%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_10-1756083647911.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-1756083647911.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353838iCF86056826795FB6%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_10-1756083647911.png%22%20alt%3D%22neidys_vargas_10-1756083647911.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A8.%20Restore%20JP13%20and%20JP14%20to%20connect%20to%20pin%201%20to%202%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_11-1756083677728.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-1756083677728.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353839iC06474B2DCB1E562%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_11-1756083677728.png%22%20alt%3D%22neidys_vargas_11-1756083677728.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CBR%20%2F%3E%0A%3CH1%20class%3D%22lia-align-justify%22%20id%3D%22toc-hId-125876942%22%20style%3D%22text-align%20%3A%20justify%3B%22%20id%3D%22toc-hId-150810145%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%3CFONT%20size%3D%225%22%3ESection%201.%20Run%20Low%20Power%20Reference%20Design%3C%2FFONT%3E%3C%2FH1%3E%0A%3COL%3E%0A%3CLI%3EOpen%20VS%20code%3C%2FLI%3E%0A%3CLI%3EGo%20to%20MCUXpresso%20for%20VS%20Code%20extension%20that%20is%20on%20the%20tools%20column%20at%20the%20left.%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%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_12-1756083800781.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_12-1756083800781.png%22%20style%3D%22width%3A%2070px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353842i8F0658EE5327F01A%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_12-1756083800781.png%22%20alt%3D%22neidys_vargas_12-1756083800781.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%26nbsp%3B%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_13-1756083830860.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_13-1756083830860.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353843iE586A5DC8E56E73E%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_13-1756083830860.png%22%20alt%3D%22neidys_vargas_13-1756083830860.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_health_care_iot_peripheral_bm%E2%80%9D%20project%20as%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%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_14-1756083864023.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_14-1756083864023.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353844iC7BBC18F0360C72F%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_14-1756083864023.png%22%20alt%3D%22neidys_vargas_14-1756083864023.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FLI%3E%0A%3CLI%3E%0A%3CP%3ERepeat%20previous%20step%20for%20%E2%80%9Cfrdmmcxw23_health_care_iot_central%E2%80%9D%3C%2FP%3E%0A%3C%2FLI%3E%0A%3CLI%3E%0A%3CP%3EGo%20back%20to%20Projects%20view%20and%20build%20the%20projects%20clicking%20%E2%80%9CBuild%20Selected%E2%80%9D%20icon%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%2FP%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_15-1756083978847.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_15-1756083978847.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353845iB88DD21F0DDE682F%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_15-1756083978847.png%22%20alt%3D%22neidys_vargas_15-1756083978847.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%227%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3EConnect%20USB%20cable%20to%20MCU-LINK%20(J10)%20connector%20on%20both%20boards%3C%2FLI%3E%0A%3CLI%3EOpen%20a%20Serial%20terminal%20on%20PC%20for%20the%20serial%20device%20with%20these%20settings%20on%20the%20two%20boards%3A%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-%20115200%20baud%20rate%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-%20No%20parity%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-%20One%20stop%20bit%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-%20No%20flow%20control%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%3ETo%20identify%20the%20appropriate%20COM%2C%20open%20the%20Device%20Manager%20and%20look%20for%20MCU-Link%20VCom%20Port%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%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%2FP%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_16-1756084026487.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_16-1756084026487.png%22%20style%3D%22width%3A%20306px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353846i38D94C312CE8D421%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_16-1756084026487.png%22%20alt%3D%22neidys_vargas_16-1756084026487.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3CP%3E9.%26nbsp%3BSelect%20%E2%80%9Cfrdmmcxw23_health_car_iot_central%E2%80%9D%20and%20click%20on%20debug%20to%20flash%20the%20code%20into%20one%20board%3C%2FP%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_17-1756084148676.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_17-1756084148676.png%22%20style%3D%22width%3A%20766px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353847i4AFC4659B165C493%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_17-1756084148676.png%22%20alt%3D%22neidys_vargas_17-1756084148676.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%2210%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3EClick%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%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_18-1756084177360.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_18-1756084177360.png%22%20style%3D%22width%3A%20247px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353848iBDCBD8FAAF20B715%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_18-1756084177360.png%22%20alt%3D%22neidys_vargas_18-1756084177360.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CP%3E11.%20Click%20on%20%E2%80%9CStop%E2%80%9D%20button%20or%20press%20%E2%80%9CShift%20%2B%20F5%E2%80%9D%20to%20terminate%20the%20debug%20session.%26nbsp%3B%3C%2FP%3E%0A%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-center%22%20image-alt%3D%22neidys_vargas_20-1756084238838.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_20-1756084238838.png%22%20style%3D%22width%3A%20284px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353850i7749BEBCD1B0EFBF%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_20-1756084238838.png%22%20alt%3D%22neidys_vargas_20-1756084238838.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3CDIV%20id%3D%22tinyMceEditorneidys_vargas_19%22%20class%3D%22mceNonEditable%20lia-copypaste-placeholder%22%3E%26nbsp%3B%3C%2FDIV%3E%0A%3CBR%20%2F%3E%0A%3CP%3E%3CSPAN%3E12.%20Open%20a%20Serial%20terminal%20on%20PC%20for%20the%20serial%20device%20with%20these%20settings%20on%20the%20two%20boards%3A%3C%2FSPAN%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-%20460800%20baud%20rate%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-%20No%20parity%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-%20One%20stop%20bit%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-%20No%20flow%20control%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%3ETo%20identify%20the%20appropriate%20COM%2C%20open%20the%20Device%20Manager%20and%20look%20for%20MCU-Link%20VCom%20Port%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%3E13.%20Repeat%20the%20steps%20from%209%20to%2011%20with%20the%20%22frdmmcxw23_health_care_iot_peripheral_bm%22%20project%20into%20the%20second%20board%3C%2FP%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%3EClean%20serial%20terminals%3C%2FLI%3E%0A%3CLI%3EClick%20SW1%20button%20to%20reset%20the%20central%20board.%3C%2FLI%3E%0A%3CLI%3EClick%20SW5%20button%20to%20start%20the%20Health%20care%20IoT%20peripheral%20demo.%3C%2FLI%3E%0A%3CLI%3EIn%20the%20terminal%20you%20will%20see%20that%20the%20boards%20are%20communicating%20each%20other%20each%20second%20after%20the%20boards%20stablish%20connection.%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CTABLE%20class%3D%22%20lia-align-justify%22%20width%3D%22726%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CTBODY%3E%0A%3CTR%3E%0A%3CTD%20width%3D%22354%22%3E%0A%3CP%3ECentral%20Device%3C%2FP%3E%0A%3C%2FTD%3E%0A%3CTD%20width%3D%22372%22%3E%0A%3CP%3EPeripheral%20Device%3C%2FP%3E%0A%3C%2FTD%3E%0A%3C%2FTR%3E%0A%3CTR%3E%0A%3CTD%20width%3D%22354%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_21-1756084297162.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_21-1756084297162.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353851iB9C08190BF0B9C14%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_21-1756084297162.png%22%20alt%3D%22neidys_vargas_21-1756084297162.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FTD%3E%0A%3CTD%20width%3D%22372%22%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22neidys_vargas_22-1756084306474.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_22-1756084306474.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353852i27EB82537F5C90FA%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22neidys_vargas_22-1756084306474.png%22%20alt%3D%22neidys_vargas_22-1756084306474.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%0A%3CBR%20%2F%3E%0A%3C%2FTD%3E%0A%3C%2FTR%3E%0A%3C%2FTBODY%3E%0A%3C%2FTABLE%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%26nbsp%3B%3C%2FP%3E%0A%3COL%20class%3D%22lia-align-justify%22%20start%3D%2218%22%20style%3D%22text-align%20%3A%20justify%3B%22%20style%3D%22text-align%20%3A%20justify%3B%22%3E%0A%3CLI%3EAs%20expected%20the%20Peripheral%20device%20connects%20to%20the%20central%20device%20send%20the%20temp%20information.%20The%20peripheral%20device%20will%20keep%20advertising%20each%20second%20to%20report%20temperature%20and%20battery%20status%2C%20after%20this%20time%20it%20goes%20to%20Deep%20sleep%20mode.%3C%2FLI%3E%0A%3CLI%3EThe%20next%20step%20is%20to%20measure%20the%20current%2C%20connect%20the%20ammeter%20on%20JP2%20in%20the%20peripheral%20device.%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_23-1756084355575.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_23-1756084355575.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353853i69EB580EB71DF48B%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_23-1756084355575.png%22%20alt%3D%22neidys_vargas_23-1756084355575.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%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%3EFigure%201%20measuring%20an%20advertising%20interval%3C%2FEM%3E%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_24-1756084450117.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_24-1756084450117.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353855iBC149E0B46E99E5C%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_24-1756084450117.png%22%20alt%3D%22neidys_vargas_24-1756084450117.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%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%3EFigure%202%20Board%20after%20pressing%20sw5%3C%2FEM%3E%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_25-1756084478660.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22neidys_vargas_25-1756084478660.png%22%20style%3D%22width%3A%20999px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F353856i828AE577690F7088%2Fimage-size%2Flarge%3Fv%3Dv2%26amp%3Bpx%3D999%22%20role%3D%22button%22%20title%3D%22neidys_vargas_25-1756084478660.png%22%20alt%3D%22neidys_vargas_25-1756084478660.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%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%3EFigure%203%20Board%20init%20services%20and%20start%20advertising%20until%20central%20scan%20connection%3C%2FEM%3E%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%3EYou%20can%20have%20more%20information%20about%20the%20Reference%20application%20Health%20Care%20IoT%20Central%2FPeripheral%20and%20how%20to%20modify%20the%20project%20to%20change%20adv%20interval%20or%20disable%20services%20on%20the%20application%20note%3A%3CBR%20%2F%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.nxp.com%2Fbundle%2FAN14659%2Fpage%2Ftopics%2Fintroduction.html%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSTRONG%3EAN14659%20MCX%20W23%20Bluetooth%20Low%20Energy%20Power%20Consumption%20Analysis%3C%2FSTRONG%3E%3C%2FA%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%26nbsp%3B%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%3CSTRONG%3E%3C%2FSTRONG%3E%3C%2FP%3E%3CDIV%20class%3D%22lia-vid-container%20video-embed-center%22%3E%3CDIV%20id%3D%22lia-vid-6377334576112w400h225r34%22%20class%3D%22lia-video-brightcove-player-container%22%3E%3CVIDEO-JS%20data-video-id%3D%226377334576112%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%2F6377334576112%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-2157207%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 06:30 PM
Updated by: