Add example for the NXP LPC55S6x platform - #622
Open
AlexLanzano wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a self-contained wolfCrypt test/benchmark example targeting the NXP LPC55S6x (LPCXpresso55S69), with build instructions and configuration focused on the SoC’s supported hardware-accelerated primitives.
Changes:
- Introduces an LPC55S6x example application that runs
wolfcrypt_test()thenbenchmark_test()over the debug UART. - Adds a platform-specific
user_settings.hto enable the intended wolfCrypt feature set (and optionally disable HW crypto for comparison). - Provides an MCUXpresso-SDK-based Makefile and usage documentation for building/running the example.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| nxp/lpc55s6x/user_settings.h | wolfCrypt configuration for LPC55S6x (algorithms, HW accel toggles, I/O + time hooks). |
| nxp/lpc55s6x/main.c | Example entry point: board init, TRNG init, test + benchmark execution, UART output formatting, SysTick timebase. |
| nxp/lpc55s6x/Makefile | Build recipe integrating MCUXpresso SDK sources and wolfSSL sources, with HW/SW crypto switch. |
| nxp/lpc55s6x/README.md | Documents accelerated blocks, build steps, runtime setup, and design notes. |
| nxp/lpc55s6x/.gitignore | Ignores build output directory for this example. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| extern "C" { | ||
| #endif | ||
|
|
||
| #include "fsl_debug_console.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.