Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
1. Connecting S32K344 Evaluation Board to the NAVQ+ Kit
The following hardware setup is required for installing and running a Zephyr sample on the NXP S32K344 Evaluation Board:
...
Pin Function | S32K344 Connector | NAVQ+ Kit Connector |
+5V | P27.1 | J6.1 |
+5V | P27.2 | J6.2 |
GND | P27.4 | J6.4 |
GND | P27.5 | J6.5 |
2. Connecting S32K344 Evaluation Board to a Linux PC
The following hardware setup is required for installing and running a Zephyr sample on the NXP S32K344 Evaluation Board:
...
The SEGGER J-Link is connected to the P26 connector (this is a 10 pin 0.50” space JTAG with the standard pinout used by standard Arm debuggers). Ensure pin 1 on the PCB silkscreen is aligned with pin 1 on the debugger (refer to the picture above).
The Ethernet connection to the local network using the RDDRONE-T1ADAPT Ethernet media converter connected to the P9 100Base-T1 Ethernet Connector.
The power is to be supplied at the 5 pin P27 connector at the top left corner of the board (Pin 1-2 power, Pin 3 NC, Pin 4-5 ground). The input voltage range is from 5V to 40V.
3. Building Zephyr for S32K344 Evaluation Board
Zephyr samples can be built as described in the Zephyr Project documentation:
...
Code Block |
---|
cd zephyr west build -p always -b mr_canhubk3 samples/hello_world |
4. Installing Zephyr on S32K344 Evaluation Board from the NAVQ+ Kit
Use west
to install Zephyr from the NAVQ+ Kit:
...
Code Block |
---|
*** Booting Zephyr OS build emcraft-ef041c6-2-gdaa341a973af *** |
5. Installing Zephyr on S32K344 Evaluation Board from a Linux PC
If the J-Link probe is directly connected to the build machine then the “west flash
" command can be used to flash the sample as described in the Zephyr Project documentation:
...
Code Block |
---|
*** Booting Zephyr OS build emcraft-ef041c6-2-gdaa341a973af *** |
6. Controlling S32K344 Evaluation Board LEDs from the NAVQ+ Kit
Emcraft provides the simple Zephyr demo (emcraft/app/led_network_control
) that allows to control the board LEDs from the NAVQ+ kit over the local network.
...