MCUXpresso_LPC55S69/boards/lpcxpresso55s69/driver_examples/plu/combination/cm33_core0
Yilin Sun 6e8d03ec0a Updated to SDK v2.15.000
Signed-off-by: Yilin Sun <imi415@imi.moe>
2024-04-12 21:21:49 +08:00
..
armgcc Updated to SDK v2.15.000 2024-04-12 21:21:49 +08:00
board.c Stock SDK v2.11.0 2022-04-08 22:42:47 +08:00
board.h Stock SDK v2.11.0 2022-04-08 22:42:47 +08:00
clock_config.c Stock SDK v2.11.0 2022-04-08 22:42:47 +08:00
clock_config.h Stock SDK v2.11.0 2022-04-08 22:42:47 +08:00
pin_mux.c Stock SDK v2.11.0 2022-04-08 22:42:47 +08:00
pin_mux.h Stock SDK v2.11.0 2022-04-08 22:42:47 +08:00
plu_combination.c Updated to SDK v2.15.000 2024-04-12 21:21:49 +08:00
plu_combination_v3_14.xml Updated to SDK v2.15.000 2024-04-12 21:21:49 +08:00
readme.md Updated to SDK v2.15.000 2024-04-12 21:21:49 +08:00

readme.md

Overview

The PLU combination project is a simple demonstration program of the SDK PLU driver. In this example, a number of GPIO pins are connected to PLU inputs and the LED is used to monitor the PLU outputs to demonstrate the configuration and use of the Programmable Logic Unit (PLU) to construct a combinational logic network.

SDK version

  • Version: 2.15.000

Toolchain supported

  • IAR embedded Workbench 9.40.1
  • Keil MDK 5.38.1
  • GCC ARM Embedded 12.2
  • MCUXpresso 11.8.0

Hardware requirements

  • Mini/micro USB cable
  • LPCXpresso55s69 board
  • Personal Computer

Board settings

PLU input pins connection:

  • P17_19 (GPIO1_8) to P18_20 (PLU_IN3).
  • P18_1 (GPIO1_9) to P17_12 (PLU_IN4).
  • P18_3 (GPIO1_10) to P17_10 (PLU_IN5).

PLU output pins connection:

  • P18_16 (PLU_OUT0) to P18_9 (LED_RED).
  • P18_14 (PLU_OUT1) to P18_7 (LED_GREEN).
  • P17_1 (PLU_OUT2) to P18_5 (LED_BLUE).

Prepare the Demo

Note: MCUXpresso IDE project default debug console is semihost

  1. Connect a micro USB cable between the PC host and the CMSIS DAP port(CN2 on the board).
  2. Open a serial terminal with the following settings (See Appendix A in Getting started guide for description how to determine serial port number):
    • 115200 baud rate
    • 8 data bits
    • No parity
    • One stop bit
    • No flow control
  3. Download the program to the target board.
  4. Either press the reset button on your board or launch the debugger in your IDE to begin running the demo.

Expected Result Input source and LED status table:

PLU_IN5 PLU_IN4 PLU_IN3 LED_BLUE LED_GREEN LED_RED
0 0 0 off off off
0 0 1 off off on
0 1 0 off on off
0 1 1 on off off
1 0 0 off on on
1 0 1 on off on
1 1 0 on on off
1 1 1 on on on

The log below shows the output of the plu combination example in the terminal window:

PLU combination driver example.

Select the input source.
1. Input source 0
2. Input source 1
3. Input source 2
4. Set all three input sources.
0
Select the input value.
0. Low level.
1. High level.
1
Select the input source.
0. Input source 0
1. Input source 1
2. Input source 2
3. Set all three input sources.
3
Input the three values like 000.
0. Low level.
1. High level.
011

The LED will change as the description in the table