Daniel Pouzzner a3fb5029f8 clean up trailing whitespace and misplaced CRLFs, add missing final newlines, remove stray UTF8 nonprintables (BOMs) and ASCIIfy stray homoglyphs (spaces and apostrophes), guided by expanded coverage in wolfssl-multi-test check-source-text. | 2 hónapja | |
---|---|---|
.. | ||
README.md | 6 éve | |
apps.wolfcrypttest.pkg.yml | 3 hónapja | |
crypto.wolfssl.pkg.yml | 3 hónapja | |
crypto.wolfssl.syscfg.yml | 6 éve | |
include.am | 6 éve | |
setup.sh | 2 hónapja |
This port is for Apache Mynewt available here.
It provides follows mynewt packages.
Specify the path of the mynewt project and execute wolfssl/IDE/mynewt/setup.sh
.
./IDE/mynewt/setup.sh /path/to/myproject_path
This script will deploy wolfssl's mynewt package described in the Overview to the mynewt project.
To enable logging, please append -DDEBUG_WOLFSSL
to crypto.wolfssl.pkg.yml
(or /path/to/myproject_path/crypto/wolfssl/pkg.yml
) in pkg.cflags:
and inject dependency of mynewt log modules.
mynewt/crypto.wolfssl.pkg.yml
pkg.req_apis:
...
- log
- stats
- console
pkg.cflags: -DWOLFSSL_APACHE_MYNEWT ... -DDEBUG_WOLFSSL
Please add wolfSSL_Debugging_ON()
to application code.
When it executes application, display tty device for output display devices.
please confirm with the cat /dev/ttysXXX
command or kermit
or screen
.
This section eplains how to set wolfssl example application to target device.
Please execute follows commands at only once.
create wolfcrypttest_sim that is simulator device for unit test of wolfcrypt.
cd /path/to/myproject_path
newt target create wolfcrypttest_sim
newt target set wolfcrypttest_sim app=apps/wolfcrypttest
newt target set wolfcrypttest_sim bsp=@apache-mynewt-core/hw/bsp/native
newt target set wolfcrypttest_sim build_profile=debug
build and execute wolfcrypttest_sim
newt clean wolfcrypttest_sim
newt build wolfcrypttest_sim
./bin/targets/wolfcrypttest_sim/app/apps/wolfcrypttest/wolfcrypttest.elf