From d184f8b1aa81818d60cd530829b1c0e95bc59fc5 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Tue, 3 May 2016 16:43:25 -0600 Subject: [PATCH 1/5] wolfSSL embOS port Initialize self-review complete Removed autogenerated files --- IDE/IAR-EWARM/embOS/README | 23 + IDE/IAR-EWARM/embOS/README_SAMV71 | 104 + IDE/IAR-EWARM/embOS/README_custom_port | 215 ++ .../samv71q21_wolfssl.icf | 57 + .../user_settings.h | 67 + .../user_settings_simple_example.h | 43 + .../user_settings_verbose_example.h | 208 ++ .../Application/runBenchmarks.c | 31 + .../wolfcrypt_benchmark.Debug.driver.xcl | 33 + .../wolfcrypt_benchmark.Debug.general.xcl | 13 + .../settings/wolfcrypt_benchmark.crun | 16 + .../settings/wolfcrypt_benchmark.dbgdt | 115 + .../settings/wolfcrypt_benchmark.dni | 134 + .../settings/wolfcrypt_benchmark_Debug.jlink | 39 + .../wolfcrypt_benchmark.dep | 719 ++++ .../wolfcrypt_benchmark.ewd | 3163 +++++++++++++++++ .../wolfcrypt_benchmark.ewp | 1995 +++++++++++ .../wolfcrypt_benchmark.ewt | 2382 +++++++++++++ .../settings/wolfcrypt_lib.Debug.driver.xcl | 13 + .../settings/wolfcrypt_lib.Debug.general.xcl | 11 + .../settings/wolfcrypt_lib.crun | 16 + .../settings/wolfcrypt_lib.dbgdt | 5 + .../settings/wolfcrypt_lib.dni | 45 + .../wolfcrypt_lib.dep | 906 +++++ .../wolfcrypt_lib.ewd | 3163 +++++++++++++++++ .../wolfcrypt_lib.ewp | 2010 +++++++++++ .../wolfcrypt_lib.ewt | 2400 +++++++++++++ .../Application/runWolfcryptTests.c | 31 + .../settings/wolfcrypt_test.Debug.driver.xcl | 33 + .../settings/wolfcrypt_test.Debug.general.xcl | 13 + .../settings/wolfcrypt_test.crun | 16 + .../settings/wolfcrypt_test.dbgdt | 115 + .../settings/wolfcrypt_test.dni | 134 + .../settings/wolfcrypt_test_Debug.jlink | 39 + .../wolfcrypt_test.dep | 1031 ++++++ .../wolfcrypt_test.ewd | 3163 +++++++++++++++++ .../wolfcrypt_test.ewp | 1995 +++++++++++ .../wolfcrypt_test.ewt | 2382 +++++++++++++ wolfcrypt/benchmark/benchmark.c | 16 + wolfcrypt/src/random.c | 6 +- wolfssl/ssl.h | 3 +- wolfssl/wolfcrypt/settings.h | 11 + 42 files changed, 26911 insertions(+), 3 deletions(-) create mode 100644 IDE/IAR-EWARM/embOS/README create mode 100644 IDE/IAR-EWARM/embOS/README_SAMV71 create mode 100644 IDE/IAR-EWARM/embOS/README_custom_port create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_Linker_Script/samv71q21_wolfssl.icf create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings.h create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_simple_example.h create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_verbose_example.h create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.crun create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark_Debug.jlink create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewp create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewt create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.driver.xcl create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.general.xcl create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.crun create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dbgdt create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dni create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.dep create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewd create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewp create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewt create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/Application/runWolfcryptTests.c create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.driver.xcl create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.general.xcl create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.crun create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dbgdt create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dni create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test_Debug.jlink create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.dep create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewd create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewp create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewt diff --git a/IDE/IAR-EWARM/embOS/README b/IDE/IAR-EWARM/embOS/README new file mode 100644 index 000000000..7c53221b6 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/README @@ -0,0 +1,23 @@ +#-----------------------------------------------------------------------------# +wolfSSL + embOS + IAR Workbench +#-----------------------------------------------------------------------------# + +#-----------------------------------------------------------------------------# +For building the existing examples on a SAMV71_Explained_Ultra with Cortex M7 +#-----------------------------------------------------------------------------# +see README_SAMV71 + +#-----------------------------------------------------------------------------# +For building wolfssl on a new CPU that is supported by embOS in IAR Workbench +#-----------------------------------------------------------------------------# +see README_custom_port + + + +Thank you for choosing wolfSSL if you ever have any questions please contact us! + +support@wolfssl.com +info@wolfssl.com + +Copyright © 2016 wolfSSL Inc. All rights reserved. + diff --git a/IDE/IAR-EWARM/embOS/README_SAMV71 b/IDE/IAR-EWARM/embOS/README_SAMV71 new file mode 100644 index 000000000..7dce91230 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/README_SAMV71 @@ -0,0 +1,104 @@ +Steps taken to evaluate wolfSSL with the following: + +Required Software for this guide: +IAR Embedded Workbench IDE - ARM v7.60.1 (or similar version) +embOS v4.16 (for Cortex-M and IAR compiler) + +Required items (Hardware) for this guide: +Atmel SAM V71 Xplained Ultra (Or equivelent Cortex-M Evaluation Board) + Note: Must have J-Trace adapter (SWD or SWD + ETM) +j-Trace for ARM Cortex-M Processors + Note: You can see here: https://www.segger.com/j-trace-for-cortex-m.html + Note: You can also purchase other models, we used one from IAR v3.2 +20 pin target ribbon cable +USB Cable with j-Trace adapter end +Micro usb cable + +#--!! NOTE !!--# +For this guide "**SAMV71_DIR" will signify the directory: +C:\\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\ + + +#----------------------------------------------------------------------------# +# Create wolfcrypt_lib.a +#----------------------------------------------------------------------------# + +1. Open IAR Workbench -> Project -> Add Existing Project + a. Browse to **SAMV71_DIR\embOS_wolfcrypt_lib + c. Choose wolfcrypt_lib.ewp and click "Open" + +2. Go to Project -> Rebuild All + +3. Verify the library built, you should no have: + **SAMV71_DIR\embOS_wolfcrypt_lib\Debug\Bin\wolfcrypt_lib.a + + +#----------------------------------------------------------------------------# +# Setup file system to evaluate wolfssl in embOS project: +#----------------------------------------------------------------------------# + +1. On your PC create the empty directory C:\embos-trial\ + +2. go to embOS website and download a trial for your platform + https://www.segger.com/downloads/embos -> + embOS trial for Cortex-M and IAR compiler + +3. Extract (unzip) the download to C:\embos-trial + (Note: you do not need to do anything further in this directory, the + wolfSSL evaluation projects will simply link against it) + +#----------------------------------------------------------------------------# +# Evaluate wolfcrypt_tests in embOS project: +#----------------------------------------------------------------------------# + +1. In IAR Workbench go to Project -> Add Existing Project + a. Browse to **SAMV71_DIR\embOS_wolfcrypt_test_SAMV71_XULT\ + b. Choose wolfcrypt_test.ewp and click "Open" + +2. Go to Project -> Rebuild All + +3. Connect your SAMV71 Xplained Ultra to your PC with micro USB in the "Debug" + port for power and the J-Link hooked up to SWD pins and your PC + +4. Go to Project -> Download and Debug + +5. Once the "Debug" environment has loaded go to: View -> Terminal I/O + (This is where the printf's will be directed to) + +6. Hit "Go" (Debug option with 3 left arrows "→→→") + +7. You should observe the tests run and pass. + +#----------------------------------------------------------------------------# +# Evaluate wolfcrypt_benchmarks in embOS project: +#----------------------------------------------------------------------------# + +1. In IAR Workbench go to Project -> Add Existing Project + a. Browse to **SAMV71_DIR\embOS_wolfcrypt_benchmark_SAMV71_XULT\ + b. Choose wolfcrypt_benchmark.ewp and click "Open" + +2. Go to Project -> Rebuild All + +3. Connect your SAMV71 Xplained Ultra to your PC with micro USB in the "Debug" + port for power and the J-Link hooked up to SWD pins and your PC + +4. Go to Project -> Download and Debug + +5. Once the "Debug" environment has loaded go to: View -> Terminal I/O + (This is where the printf's will be directed to) + +6. Hit "Go" (Debug option with 3 left arrows "→→→") + +7. You should observe the benchmark times for the configured algorithms. + + + + + +Thank you for using this guide and we hope this was helpful to you. If you have +any suggestions / feedback for us please contact us: +support@wolfssl.com +info@wolfssl.com + +Copyright © 2016 wolfSSL Inc. All rights reserved. + diff --git a/IDE/IAR-EWARM/embOS/README_custom_port b/IDE/IAR-EWARM/embOS/README_custom_port new file mode 100644 index 000000000..d62003f25 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/README_custom_port @@ -0,0 +1,215 @@ +Steps taken to evaluate wolfSSL with the following: + +Required Software for this guide: +IAR Embedded Workbench IDE - ARM v7.60.1 (or similar version) +embOS (version that supports your CPU) +wolfssl (latest version) + +#----------------------------------------------------------------------------# +# SECTION 1: +# Setting up the file system +#----------------------------------------------------------------------------# + +1. Browse to wolfssl/IDE/IAR-EWARM/embOS/ + a. create a new directory called + (For this guide we'll call that directory "CUSTOM_DIR" and we will use + the term "CUSTOM_DIR" in other directories to signify if a directory + should be placed inside the new CUSTOM_DIR) + +2. create new directory in CUSTOM_DIR "wolfcrypt_lib_CUSTOM_DIR" +3. create new directory in CUSTOM_DIR "wolfcrypt_tests_CUSTOM_DIR" +4. create new directory in CUSTOM_DIR "CUSTOM_DIR_user_settings" +5. Copy C:\wolfssl\IDE\IAR-EWARM/embOS\SAMV71_XULT\ + embOS_SAMV71_XULT_user_settings\user_settings.h + paste that into the new CUSTOM_DIR\CUSTOM_DIR_user_settings\ + +#----------------------------------------------------------------------------# +# SECTION 2: +# Create wolfcrypt_lib.a +#----------------------------------------------------------------------------# + +1. Open IAR Workbench -> Project -> Create New Project -> Empty Project + c. Browse to CUSTOM_DIR/wolfcrypt_lib_CUSTOM_DIR/ (from section 1) + d. Called it "wolfcrypt_lib" and hit "Save" + +2. Go to Project -> Add Group... + a. call group wolfcrypt_sources + +3. Right click on wolfcrypt_sources group -> Add -> Add Files... + +4. Browse to wolfssl/wolfcrypt/src directory and select the following files: + + #---------------------------------------------# + # aes.c memory.c # + # asn.c misc.c # + # chacha.c poly1305.c # + # chacha20_poly1305.c pwdbased.c # + # coding.c rabbit.c # + # des3.c random.c # + # dh.c rsa.c # + # dsa.c sha.c # + # ecc.c sha256.c # + # hash.c sha512.c # + # hmac.c tfm.c # + # md4.c wc_encrypt.c # + # md5.c wc_port.c # + #---------------------------------------------# + +5. Once those are all added go to + Project -> Properties C/C++ Compiler -> Preprocessor (Tab) + a. In the field "Defined symbols:" add WOLFSSL_USER_SETTINGS + b. In the field "Additional include directories:" + Click the box with "..." + Click + Browse to "wolfssl" directory on your PC and click "Select" then "Ok" + You should now see "C:\\wolfssl" in that field + Click again + Browse to "wolfssl\IDE\IAR-EWARM\CUSTOM_DIR\CUSTOM_DIR_user_settings\" + Hit "Ok", verify the path is correct and hit "Ok" again. + + (Remember we copy and pasted this over in section 1. If you ever need to + change or customize your build settings this is the file that should be + modified: CUSTOM_DIR\CUSTOM_DIR_user_settings\user_settings.h) + +7. In Project -> Options -> General Options -> Output (Tab) + Check the option for "Library" instead of "Executable" + Click "OK" + +8. Go to Project -> Rebuild all (The library should build) + +9. Confirm the library is now located here: + C:\\wolfssl\IDE\IAR-EWARM\wolfcrypt_build_lib\Debug\Exe\ + wolfcrypt_lib.a + +We are now set to link to this library in the evaluation project + +#----------------------------------------------------------------------------# +# Evaluate in embOS project: +#----------------------------------------------------------------------------# + + +1. go to embOS website and download a trial for your platform + https://www.segger.com/downloads/embos -> + embOS trial for Cortex-M and IAR compiler + +2. After download and unzipping open IAR Workbench + a. choose Project -> Add Existing Project + b. Navigate to the downloaded trial then: + Start\BoardSupport\\\Start_.ewp + (For example) Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Start_SAMv71.ewp + +3. Go to Project -> Options -> C/C++ Compiler -> Preprocessor (Tab) + a. Add this to the "Defined symbols: (one per line)" Box: + WOLFSSL_USER_SETTINGS + b. Now in the above box "Additional include directories:" + Click on the box with "..." + Click + Browse to "wolfssl" directory on your computer and click "Select" + c. This project will use the same user_settings.h as in the above project + where we built the library so both have the exact same settings + +4. Go to Project -> Options -> Linker -> Library (Tab) + Next to the field "Additonal libraries: (one per line)" + Click the box with "..." + Click + Browse to C:\\CUSTOM_DIR\wolfcrypt_lib_CUSTOM_DIR\Debug\Exe\wolfcrypt_lib.a + Click "Open" and "OK" (twice) + +5. In the main project file "OS_StartLEDBlick.c" + + #--- Headers ---# + #include + #include + + #--- Task for wolfCrypt ---# + static OS_STACKPTR int StackWOLF[20000]; + static OS_TASK TCWOLF; + static void wolfTestRun(void) { + printf("Begin wolfcrypt tests\n"); + wolfcrypt_test(NULL); + printf("Wolfcrypt tests complete\n"); + } + + #--- Create the task in main() BEFORE calling OS_Start() ---# + OS_CREATETASK(&TCWOLF, "wolfcrypt test Task", wolfTestRun, 100, StackWOLF); + +6. To get Logging working for seeing test results: + a. Go to Project -> Options -> General Options -> Library Configuration (Tab) + b. In the field "Library low-level interface implementation" + Check the radio button for Semihosted + Then in the inner field marked "stdout/stderr" + Check the radio button for "Via semihosting" and click "OK" + +7. Now we're ready to build and debug the project. + a. Project -> Options -> Debugger + In the field marked "Driver" Select drop-down and choose J-Link/J-Trace + Click "OK" + b. Project -> Rebuild All + c. Connect your Cortex-M evaluation board to j-Trace and j-Trace to PC + d. Connect the micro-USB to the debug port of the Cortex-M and PC for power + e. Project -> Download and Debug + +8. Once the Debug environment spawns go to View -> Terminal I/O + This is where the "printf" to stdout will be directed + +9. In the Debug Menu bar look for the little square with three arrows pointing + to the right. When you mouse over it should say "GO" + Click this option and in the Terminal I/O Window you should see something + like this (depends on which functionality you set in user_settings.h) + + SEE NOTE 1 BELOW IF YOU OBSERVE AN ERROR (-40) IN RSA TEST + +Begin wolfcrypt tests +MD5 test passed! +MD4 test passed! +SHA test passed! +SHA-256 test passed! +SHA-384 test passed! +SHA-512 test passed! +HMAC-MD5 test passed! +HMAC-SHA test passed! +HMAC-SHA256 test passed! +HMAC-SHA384 test passed! +HMAC-SHA512 test passed! +GMAC test passed! +HC-128 test passed! +Rabbit test passed! +Chacha test passed! +POLY1305 test passed! +ChaCha20-Poly1305 AEAD test passed! +DES test passed! +DES3 test passed! +AES test passed! +AES-GCM test passed! +RANDOM test passed! +RSA test passed! +DH test passed! +DSA test passed! +PWDBASED test passed! +ECC test passed! + +total Allocs = 988 +total Bytes = 1471829 +peak Bytes = 29576 +current Bytes = 0 + +Thank you for using this guide and we hope this was helpful to you. If you have +any suggestions / feedback for us please contact us: +support@wolfssl.com +info@wolfssl.com + +/* --------------------------------------------------------------------------*/ +#### NOTE 1: #### + +If you are working off of a base example project and you observe memory errors +when malloc is called, make sure that the linker script has set the HEAP high +enough. +Project -> Options -> Linker -> (Config Tab) -> Linker configuration file + +Check this file for __size_heap__ it is typically set to 0x200 by default. +There are places in wolfSSL that malloc as much as 4k at a time and peak usage +can be as high as 29K if using full functionality. +/* --------------------------------------------------------------------------*/ + +Copyright © 2016 wolfSSL Inc. All rights reserved. + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_Linker_Script/samv71q21_wolfssl.icf b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_Linker_Script/samv71q21_wolfssl.icf new file mode 100644 index 000000000..df18243a5 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_Linker_Script/samv71q21_wolfssl.icf @@ -0,0 +1,57 @@ +/* ---------------------------------------------------------------------------- */ +/* Atmel Microcontroller Software Support */ +/* SAM Software Package License */ +/* ---------------------------------------------------------------------------- */ +/* Copyright (c) 2014, Atmel Corporation */ +/* */ +/* All rights reserved. */ +/* */ +/* Redistribution and use in source and binary forms, with or without */ +/* modification, are permitted provided that the following condition is met: */ +/* */ +/* - Redistributions of source code must retain the above copyright notice, */ +/* this list of conditions and the disclaimer below. */ +/* */ +/* Atmel's name may not be used to endorse or promote products derived from */ +/* this software without specific prior written permission. */ +/* */ +/* DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR */ +/* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ +/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE */ +/* DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT, */ +/* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */ +/* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, */ +/* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF */ +/* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING */ +/* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */ +/* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/* ---------------------------------------------------------------------------- */ + +/*###ICF### Section handled by ICF editor, don't touch! ****/ +/*-Editor annotation file-*/ +/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ +/*-Specials-*/ +define symbol __ICFEDIT_intvec_start__ = 0x00400000; +/*-Memory Regions-*/ +define symbol __ICFEDIT_region_RAM_start__ = 0x20400000; +define symbol __ICFEDIT_region_RAM_end__ = 0x20460000 -1; +define symbol __ICFEDIT_region_ROM_start__ = 0x00400000; +define symbol __ICFEDIT_region_ROM_end__ = 0x00600000 -1; +/*-Sizes-*/ +define symbol __ICFEDIT_size_cstack__ = 0x400; +define symbol __ICFEDIT_size_heap__ = 0x20000; +/**** End of ICF editor section. ###ICF###*/ + +define memory mem with size = 4G; +define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; +define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; + +define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; +define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; + +initialize by copy { readwrite }; +do not initialize { section .noinit }; + +place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; +place in ROM_region { readonly }; +place in RAM_region { readwrite, block CSTACK, block HEAP }; diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings.h b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings.h new file mode 100644 index 000000000..00f3b7293 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings.h @@ -0,0 +1,67 @@ +#ifndef _EMBOS_USER_SETTINGS_H_ +#define _EMBOS_USER_SETTINGS_H_ + + #undef WOLFSSL_EMBOS + #define WOLFSSL_EMBOS + + #undef WOLFCRYPT_ONLY + #define WOLFCRYPT_ONLY + + #undef NO_64BIT + #define NO_64BIT + + #undef SIZEOF_LONG + #define SIZEOF_LONG 4 + + #undef SIZEOF_LONG_LONG + #define SIZEOF_LONG_LONG 8 + + #undef HAVE_CHACHA + #define HAVE_CHACHA + + #undef HAVE_POLY1305 + #define HAVE_POLY1305 + + #undef ECC_SHAMIR + #define ECC_SHAMIR + + #undef HAVE_ECC + #define HAVE_ECC + + #undef ECC_USER_CURVES + #define ECC_USER_CURVES + + #undef ECC_ALT_SIZE + #define ECC_ALT_SIZE + + #undef FP_MAX_BITS_ECC + #define FP_MAX_BITS_ECC 528 + + #undef TFM_TIMING_RESISTANT + #define TFM_TIMING_RESISTANT + + #undef WOLFSSL_SHA512 + #define WOLFSSL_SHA512 + + #undef WOLFSSL_SHA384 + #define WOLFSSL_SHA384 + + #undef HAVE_AESGCM + #define HAVE_AESGCM + + #undef NO_INLINE + #define NO_INLINE + + #undef BENCH_EMBEDDED + #define BENCH_EMBEDDED + + #undef WOLFSSL_SMALL_STACK + #define WOLFSSL_SMALL_STACK + + #undef USE_WOLFSSL_MEMORY + #define USE_WOLFSSL_MEMORY +/* Uncomment to track memory CAUTION: Can cause excess overhead */ +/* #undef WOLFSSL_TRACK_MEMORY */ +/* #define WOLFSSL_TRACK_MEMORY */ + +#endif /* _EMBOS_USER_SETTINGS_H_ */ diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_simple_example.h b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_simple_example.h new file mode 100644 index 000000000..7679f0492 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_simple_example.h @@ -0,0 +1,43 @@ +#ifndef _EMBOS_USER_SETTINGS_H_ +#define _EMBOS_USER_SETTINGS_H_ + + #undef WOLFCRYPT_ONLY + #define WOLFCRYPT_ONLY + + #undef NO_64BIT + #define NO_64BIT + + #undef SIZEOF_LONG + #define SIZEOF_LONG 4 + + #undef SIZEOF_LONG_LONG + #define SIZEOF_LONG_LONG 8 + + #undef HAVE_CHACHA + #define HAVE_CHACHA + + #undef HAVE_POLY1305 + #define HAVE_POLY1305 + + #undef ECC_SHAMIR + #define ECC_SHAMIR + + #undef HAVE_ECC + #define HAVE_ECC + + #undef WOLFSSL_SHA512 + #define WOLFSSL_SHA512 + + #undef WOLFSSL_SHA384 + #define WOLFSSL_SHA384 + + #undef HAVE_AESGCM + #define HAVE_AESGCM + + #undef NO_INLINE + #define NO_INLINE + + #undef BENCH_EMBEDDED + #define BENCH_EMBEDDED + +#endif /* _EMBOS_USER_SETTINGS_H_ */ diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_verbose_example.h b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_verbose_example.h new file mode 100644 index 000000000..d95b64c99 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_SAMV71_XULT_user_settings/user_settings_verbose_example.h @@ -0,0 +1,208 @@ +#ifndef _EMBOS_USER_SETTINGS_H_ +#define _EMBOS_USER_SETTINGS_H_ + +/* ------------------------------------------------------------------------- */ +/* Platform */ +/* ------------------------------------------------------------------------- */ +#undef NO_INLINE +#define NO_INLINE + +#undef SINGLE_THREADED +#define SINGLE_THREADED + +#undef WOLFSSL_SMALL_STACK +#define WOLFSSL_SMALL_STACK + + +/* ------------------------------------------------------------------------- */ +/* Math Configuration */ +/* ------------------------------------------------------------------------- */ +#undef NO_64BIT +#define NO_64BIT + +#ifndef SIZEOF_LONG +#define SIZEOF_LONG 4 +#endif +#ifndef SIZEOF_LONG_LONG +#define SIZEOF_LONG_LONG 8 +#endif + +#undef USE_FAST_MATH +#define USE_FAST_MATH + +#ifdef USE_FAST_MATH + #undef TFM_TIMING_RESISTANT +// #define TFM_TIMING_RESISTANT + + /* Optimizations (TFM_ARM, TFM_ASM or none) */ + #undef TFM_ARM +// #define TFM_ARM + + #undef TFM_ASM + //#define TFM_ASM + + /* Enable extra math checks */ + #undef TFM_CHECK + //#define TFM_CHECK +#endif + +/* Math debugging */ +#undef WOLFSSL_DEBUG_MATH +//#define WOLFSSL_DEBUG_MATH + + +/* ------------------------------------------------------------------------- */ +/* Crypto */ +/* ------------------------------------------------------------------------- */ +#undef WOLFCRYPT_ONLY +#define WOLFCRYPT_ONLY + +/* ECC */ +#if 1 + #undef HAVE_ECC + #define HAVE_ECC + + /* Manually define enabled curves */ + #undef ECC_USER_CURVES + #define ECC_USER_CURVES + + #define HAVE_ECC192 + #define HAVE_ECC224 + #undef NO_ECC256 + #define HAVE_ECC384 + #define HAVE_ECC521 + + /* Fixed point cache (speeds repeated operations against same private key) */ + #undef FP_ECC + //#define FP_ECC + #ifdef FP_ECC + /* Bits / Entries */ + #undef FP_ENTRIES + #define FP_ENTRIES 2 + #undef FP_LUT + #define FP_LUT 4 + #endif + + /* Optional ECC calculation method */ + /* Note: doubles heap usage, but slightly faster */ + #undef ECC_SHAMIR + #define ECC_SHAMIR + + /* Reduces heap usage, but slower */ + #undef ECC_TIMING_RESISTANT + #define ECC_TIMING_RESISTANT + + #ifdef USE_FAST_MATH + /* Max ECC bits (curve size * 8). ECC521 is (66*8) = 528. */ + #undef ALT_ECC_SIZE + #define ALT_ECC_SIZE + #undef FP_MAX_BITS_ECC + #define FP_MAX_BITS_ECC 528 + + /* Enable TFM optimizations for ECC */ + #define TFM_ECC192 + #define TFM_ECC224 + #define TFM_ECC256 + #define TFM_ECC384 + #define TFM_ECC521 + #endif +#endif + +/* RSA */ +#undef NO_RSA +#if 1 + #ifdef USE_FAST_MATH + /* Maximum math bits (Max RSA key bits * 2) */ + #undef FP_MAX_BITS + #define FP_MAX_BITS 4096 + #endif + + /* half as much memory but twice as slow */ + #undef RSA_LOW_MEM + //#define RSA_LOW_MEM +#else + #define NO_RSA +#endif + +/* AES */ +#undef NO_AES +#if 1 + #undef HAVE_AESGCM + #define HAVE_AESGCM + + /* GCM Method: GCM_SMALL, GCM_WORD32 or GCM_SMALL */ + #undef GCM_SMALL + #define GCM_SMALL +#else + #define NO_AES +#endif + +/* ChaCha20 / Poly1305 */ +#undef HAVE_CHACHA +#undef HAVE_POLY1305 +#if 1 + #define HAVE_CHACHA + #define HAVE_POLY1305 + + /* Needed for Poly1305 */ + #undef HAVE_ONE_TIME_AUTH + #define HAVE_ONE_TIME_AUTH +#endif + + +/* ------------------------------------------------------------------------- */ +/* Hashing */ +/* ------------------------------------------------------------------------- */ +/* Sha */ +#undef NO_SHA +#if 1 +#else + #define NO_SHA +#endif + +/* Sha256 */ +#undef NO_SHA256 +#if 1 + /* over twice as small, but 50% slower */ + //#define USE_SLOW_SHA2 +#else + #define NO_SHA256 +#endif + +/* Sha512 */ +#undef WOLFSSL_SHA512 +#if 1 + #define WOLFSSL_SHA512 + + /* Sha384 */ + #undef WOLFSSL_SHA384 + #if 1 + #define WOLFSSL_SHA384 + #endif +#endif + +/* MD5 */ +#undef NO_MD5 +#if 1 + #define NO_MD5 +#endif + + +/* ------------------------------------------------------------------------- */ +/* HW Crypto Acceleration */ +/* ------------------------------------------------------------------------- */ +// See README.md for instructions +//#define FREESCALE_MMCAU 1 + + +/* ------------------------------------------------------------------------- */ +/* Benchmark / Test */ +/* ------------------------------------------------------------------------- */ +/* Use reduced benchmark / test sizes */ +#undef BENCH_EMBEDDED +#define BENCH_EMBEDDED + +#undef USE_CERT_BUFFERS_2048 +#define USE_CERT_BUFFERS_2048 + +#endif /* _EMBOS_USER_SETTINGS_H_ */ diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c new file mode 100644 index 000000000..4bb00b69f --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c @@ -0,0 +1,31 @@ +#include "RTOS.h" +#include "BSP.h" +#include + +static OS_STACKPTR int WLFSTACK[20000]; /* Stack Size */ +static OS_TASK WLFTASK; /* Task-control-blocks */ + +static void wolfTask(void) { + benchmark_test(NULL); + while (1) { + BSP_ToggleLED(1); + OS_Delay(200); + } +} + +/********************************************************************* +* +* main() +*/ +int main(void) { + OS_IncDI(); /* Initially disable interrupts */ + OS_InitKern(); /* Initialize OS */ + OS_InitHW(); /* Initialize Hardware for OS */ + BSP_Init(); /* Initialize LED ports */ + /* You need to create at least one task before calling OS_Start() */ + OS_CREATETASK(&WLFTASK, "Tests task", wolfTask, 100, WLFSTACK); + OS_Start(); /* Start multitasking */ + return 0; +} + +/****** End Of File *************************************************/ diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl new file mode 100644 index 000000000..885e2a33f --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl @@ -0,0 +1,33 @@ +"--endian=little" + +"--cpu=Cortex-M7" + +"--jlink_exec_command" + +"device ATSAMV71Q21" + +"--fpu=VFPv5_D16" + +"-p" + +"C:\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\ATSAMV71Q21.svd" + +"--semihosting" + +"--drv_communication=USB0" + +"--drv_interface_speed=auto" + +"--jlink_initial_speed=32" + +"--jlink_reset_strategy=0,0" + +"--drv_interface=SWD" + +"--drv_catch_exceptions=0x000" + +"--drv_swo_clock_setup=72000000,0,2000000" + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl new file mode 100644 index 000000000..b8ec42cb2 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl @@ -0,0 +1,13 @@ +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armproc.dll" + +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armjlink2.dll" + +"C:\Users\boz_windows\Desktop\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Debug\Exe\wolfcrypt_benchmark.out" + +--plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armbat.dll" + +--macro "C:\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\samv7-ek-flash.mac" + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.crun b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.crun new file mode 100644 index 000000000..ef39dce8f --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.crun @@ -0,0 +1,16 @@ + + + + 1 + + + * + * + * + 0 + 1 + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt new file mode 100644 index 000000000..edfa8fc39 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt @@ -0,0 +1,115 @@ + + + + + + + + + 201235 + + 20 + 926 + 247 + 61 + + + + + + + + 124272727 + + + + + + Disassembly_I0 + + + + 50020 + + + + 11 + + + + + + + 110$PROJ_DIR$\TermIOInput.txt10 + + + + + + + + + + TabID-12572-5505 + Debug Log + Debug-Log + + + + TabID-12050-5515 + Build + Build + + + + + 0 + + + TabID-23321-5509 + Workspace + Workspace + + + wolfcrypt_benchmark + + + + 0 + + + TabID-1301-5512 + Disassembly + Disassembly + + + + + 0 + + + TabID-11004-5535 + Terminal I/O + TerminalIO + + + + + 0 + + + + + + TextEditor$WS_DIR$\Application\OS_StartLEDBlink.c000004123662366TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\benchmark\benchmark.c00000211000TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfssl\ssl.h000009334117041170TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c000001500TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c000002822082208TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\fp_sqr_comba_6.i000001910941094TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\tfm.c000004781119511195TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c000009848634863TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c000003281156911569TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Application\OS_StartLEDBlink.c000004928702870TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000012422422TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c0000012412412TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c000002011114611146TextEditor$WS_DIR$\..\..\..\..\..\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c000006412412TextEditor$WS_DIR$\..\..\..\..\..\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000012422422TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c000003281156911569150100000010000001 + + + + + + + iaridepm.enu1debuggergui.enu1armjlink2.enu1-2-2304198-2-2200200154560336134154560514286-2-2304417-2-2200200154560336134323802514286-24153041098415-2200200154560336134527821514286-2-21981296-2-212982001003091336134154560336134 + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni new file mode 100644 index 000000000..b756ea17d --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni @@ -0,0 +1,134 @@ +[Stack] +FillEnabled=0 +OverflowWarningsEnabled=1 +WarningThreshold=90 +SpWarningsEnabled=1 +WarnLogOnly=1 +UseTrigger=1 +TriggerName=main +LimitSize=0 +ByteLimit=50 +[DebugChecksum] +Checksum=822032712 +[CodeCoverage] +Enabled=_ 0 +[Exceptions] +StopOnUncaught=_ 0 +StopOnThrow=_ 0 +[CallStack] +ShowArgs=0 +[Disassembly] +MixedMode=1 +[Interrupts] +Enabled=1 +[MemConfig] +Base=1 +Manual=0 +Ddf=1 +TypeViol=0 +Stop=1 +[Simulator] +Freq=10000000 +MultiCoreRunAll=1 +[JLinkDriver] +CStepIntDis=_ 0 +LeaveTargetRunning=_ 0 +TraceBufferSize=0x00010000 +TraceStallIfFIFOFull=0x00000000 +TracePortSize=0x00000000 +[SWOTraceHWSettings] +OverrideDefaultClocks=0 +CpuClock=72000000 +ClockAutoDetect=0 +ClockWanted=2000000 +JtagSpeed=2000000 +Prescaler=36 +TimeStampPrescIndex=0 +TimeStampPrescData=0 +PcSampCYCTAP=1 +PcSampPOSTCNT=15 +PcSampIndex=0 +DataLogMode=0 +ITMportsEnable=0 +ITMportsTermIO=0 +ITMportsLogFile=0 +ITMlogFile=$PROJ_DIR$\ITM.log +[Trace1] +Enabled=0 +ShowSource=1 +[Trace2] +Enabled=0 +ShowSource=0 +[SWOTraceWindow] +PcSampling=0 +InterruptLogs=0 +ForcedTimeStamps=0 +EventCPI=0 +EventEXC=0 +EventFOLD=0 +EventLSU=0 +EventSLEEP=0 +[PowerLog] +Title_0=I0 +Symbol_0=0 4 0 +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +LiveEnabled=0 +LiveFile=PowerLogLive.log +[DataLog] +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +[EventLog] +Title_0=Ch3 +Symbol_0=0 4 1 +Title_1=Ch2 +Symbol_1=0 4 1 +Title_2=Ch1 +Symbol_2=0 4 1 +Title_3=Ch0 +Symbol_3=0 4 1 +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +SumSortOrder=0 +[InterruptLog] +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +SumSortOrder=0 +[Log file] +LoggingEnabled=_ 0 +LogFile=_ "" +Category=_ 0 +[TermIOLog] +LoggingEnabled=_ 0 +LogFile=_ "" +[DriverProfiling] +Enabled=0 +Mode=1 +Graph=0 +Symbiont=0 +Exclusions= +[CallStackLog] +Enabled=0 +[CallStackStripe] +ShowTiming=1 +[PowerProbe] +Frequency=10000 +Probe0=I0 +ProbeSetup0=2 1 1 2 0 0 +[Disassemble mode] +mode=0 +[Breakpoints2] +Count=0 +[Aliases] +Count=0 +SuppressDialog=0 diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark_Debug.jlink b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark_Debug.jlink new file mode 100644 index 000000000..3a2fb4743 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark_Debug.jlink @@ -0,0 +1,39 @@ +[BREAKPOINTS] +ForceImpTypeAny = 0 +ShowInfoWin = 1 +EnableFlashBP = 2 +BPDuringExecution = 0 +[CFI] +CFISize = 0x00 +CFIAddr = 0x00 +[CPU] +MonModeVTableAddr = 0xFFFFFFFF +MonModeDebug = 0 +MaxNumAPs = 0 +LowPowerHandlingMode = 0 +OverrideMemMap = 0 +AllowSimulation = 1 +ScriptFile="" +[FLASH] +CacheExcludeSize = 0x00 +CacheExcludeAddr = 0x00 +MinNumBytesFlashDL = 0 +SkipProgOnCRCMatch = 1 +VerifyDownload = 1 +AllowCaching = 1 +EnableFlashDL = 2 +Override = 1 +Device="ATSAMV71Q21" +[GENERAL] +WorkRAMSize = 0x00 +WorkRAMAddr = 0x00 +RAMUsageLimit = 0x00 +[SWO] +SWOLogFile="" +[MEM] +RdOverrideOrMask = 0x00 +RdOverrideAndMask = 0xFFFFFFFF +RdOverrideAddr = 0xFFFFFFFF +WrOverrideOrMask = 0x00 +WrOverrideAndMask = 0xFFFFFFFF +WrOverrideAddr = 0xFFFFFFFF diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep new file mode 100644 index 000000000..5646a0b9f --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep @@ -0,0 +1,719 @@ + + + + 2 + 3271176394 + + Debug + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + $PROJ_DIR$\Application\runBenchmarks.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\smc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piod.h + $TOOLKIT_DIR$\CMSIS\Include\core_cmFunc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\efc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pmc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\dacc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mlb.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\twihs.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\aes.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pmc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\isi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\tc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rswdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\chipid.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\spi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\qspi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\isi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gpbr.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\icm.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\smc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\supc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\uart.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\efc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mcan.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc3.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\ssc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usart.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\xdmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rswdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\matrix.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\acc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pio.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\utmi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart3.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rstc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\pio\samv71q21.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart4.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\hsmci.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\sdramc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\icm.h + $TOOLKIT_DIR$\CMSIS\Include\core_cm7.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\utmi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\xdmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usbhs.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gpbr.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\matrix.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\trng.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\ssc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rstc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pwm.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart2.h + $TOOLKIT_DIR$\CMSIS\Include\core_cmInstr.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\wdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piob.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi0.h + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.__cstat.et + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\supc.h + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.__cstat.et + $PROJ_DIR$\Debug\Obj\runBenchmarks.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioe.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\hsmci.h + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioa.h + $PROJ_DIR$\Debug\Obj\xmtx.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\trng.h + $PROJ_DIR$\Debug\Obj\startup_sam.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\dacc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usbhs.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\sdramc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mlb.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\qspi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\wdt.h + $PROJ_DIR$\Debug\Obj\xmtx2.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart1.h + $PROJ_DIR$\Debug\Obj\BSP.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc1.h + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.o + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.pbi + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.pbi + $PROJ_DIR$\Debug\Obj\OS_Error.__cstat.et + $PROJ_DIR$\Debug\Obj\xmtx.o + $PROJ_DIR$\Debug\Obj\HardFaultHandler.o + $PROJ_DIR$\Debug\Obj\xmtx.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.pbi + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.o + $PROJ_DIR$\Debug\Obj\xmtx2.o + $PROJ_DIR$\Debug\Obj\system_sam.__cstat.et + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.pbi + $PROJ_DIR$\Debug\Obj\OS_Error.o + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.o + $PROJ_DIR$\Debug\Obj\BSP.pbi + $PROJ_DIR$\Debug\Obj\BSP.o + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.o + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\acc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\afec.h + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.__cstat.et + $PROJ_DIR$\Debug\Obj\xmtx2.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.o + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.o + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.o + $PROJ_DIR$\Debug\Obj\OS_Error.pbi + $PROJ_DIR$\Debug\Obj\benchmark.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.o + $TOOLKIT_DIR$\CMSIS\Include\core_cmSimd.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $TOOLKIT_DIR$\inc\c\string.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $TOOLKIT_DIR$\inc\c\intrinsics.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_Conf.h + $TOOLKIT_DIR$\inc\c\yvals.h + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71q21.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\aes.h + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Lib\os7m_tlv_dp.a + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\chipid.h + $TOOLKIT_DIR$\inc\c\ysizet.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $TOOLKIT_DIR$\lib\dl7M_tln.a + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.h + $PROJ_DIR$\Debug\List\wolfcrypt_benchmark.map + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\Global.h + $TOOLKIT_DIR$\lib\shb_l.a + $TOOLKIT_DIR$\lib\m7M_tlv.a + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER.h + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_samv71.h + $PROJ_DIR$\..\embOS_SAMV71_XULT_Linker_Script\samv71q21_wolfssl.icf + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $TOOLKIT_DIR$\inc\c\cmsis_iar.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\arc4.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\poly1305.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ecc.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hc128.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.h + $PROJ_DIR$\..\embOS_wolfcrypt_lib_SAMV71_XULT\Debug\Bin\wolfcrypt_lib.a + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\BSP.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\OS_Config.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\RTOS.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h + $TOOLKIT_DIR$\inc\c\xlocale_c.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h + $TOOLKIT_DIR$\inc\c\limits.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h + $TOOLKIT_DIR$\inc\c\xlocale.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\mem_track.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\camellia.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\aes.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h + $TOOLKIT_DIR$\inc\c\xmtx.h + $TOOLKIT_DIR$\inc\c\xtls.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.h + $PROJ_DIR$\Debug\Exe\wolfcrypt_benchmark.out + $PROJ_DIR$\Debug\Obj\wolfcrypt_benchmark.pbd + $PROJ_DIR$\Debug\Obj\benchmark.pbi + $TOOLKIT_DIR$\inc\c\ctype.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\Debug\Obj\runBenchmarks.pbi + $PROJ_DIR$\Debug\Obj\runBenchmarks.o + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_ConfDefaults.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h + $TOOLKIT_DIR$\inc\c\xlocaleuse.h + $TOOLKIT_DIR$\inc\c\wchar.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hash.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ripemd.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Int.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\certs_test.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Conf.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\JLINKMEM.h + $TOOLKIT_DIR$\inc\c\ystdio.h + $PROJ_DIR$\Debug\Obj\startup_sam.pbi + $PROJ_DIR$\Debug\Obj\system_sam.o + $PROJ_DIR$\Debug\Obj\startup_sam.o + $PROJ_DIR$\Debug\Obj\benchmark.o + $PROJ_DIR$\Debug\Obj\system_sam.pbi + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71.h + + + [ROOT_NODE] + + + ILINK + 215 170 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + BICOMP + 245 + + + ICCARM + 242 + + + __cstat + 132 + + + + + BICOMP + 155 160 88 64 59 66 69 75 159 70 57 43 100 108 107 62 142 36 61 42 85 84 105 109 110 116 91 63 83 161 141 24 65 45 81 56 34 77 73 95 118 68 114 104 115 67 101 106 103 97 94 111 82 163 151 177 162 165 44 38 39 52 25 23 35 50 51 17 47 30 26 48 71 49 79 41 74 22 58 53 86 37 55 29 46 54 78 27 72 40 76 28 33 21 87 18 80 20 32 31 60 171 176 157 179 19 156 180 246 + + + ICCARM + 246 161 160 155 159 171 157 179 176 163 70 83 180 156 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 + + + + + $PROJ_DIR$\Application\runBenchmarks.c + + + BICOMP + 224 + + + ICCARM + 225 + + + __cstat + 93 + + + + + BICOMP + 155 171 188 154 153 179 191 156 166 176 157 159 197 193 163 + + + ICCARM + 197 154 155 159 171 157 179 176 163 166 153 156 193 191 188 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c + + + BICOMP + 217 + + + ICCARM + 244 + + + __cstat + 149 + + + + + BICOMP + 154 207 201 159 218 212 230 198 195 183 163 213 236 156 196 208 197 166 222 155 202 221 193 219 186 210 181 235 188 200 232 211 228 229 185 182 187 227 184 194 209 231 234 220 153 171 176 157 179 240 206 237 205 199 203 204 190 192 + + + ICCARM + 232 211 220 154 155 159 171 157 179 176 163 166 153 219 240 202 195 206 222 237 218 205 213 212 228 199 229 200 196 182 186 187 183 227 210 184 208 194 221 201 209 198 236 203 230 181 235 204 190 185 231 234 188 207 192 197 156 193 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + BICOMP + 241 + + + ICCARM + 243 + + + __cstat + 102 + + + + + BICOMP + 50 20 37 165 49 40 52 30 22 54 21 171 155 19 160 177 38 23 17 48 41 53 29 27 28 18 31 179 162 44 39 25 35 51 47 26 71 79 74 58 86 55 46 78 72 76 33 87 80 32 60 176 157 161 70 141 142 24 64 65 36 45 57 81 61 56 66 34 42 77 43 73 85 95 88 118 84 68 100 114 105 104 69 115 109 67 108 101 110 106 59 103 116 97 107 94 91 111 75 82 63 62 159 163 83 151 156 180 246 + + + ICCARM + 246 161 160 155 159 171 157 179 176 163 70 83 180 156 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + BICOMP + 138 + + + ICCARM + 139 + + + __cstat + 117 + + + + + ICCARM + 191 246 161 160 155 159 171 157 179 176 163 70 83 180 156 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + BICOMP + 129 + + + ICCARM + 119 + + + __cstat + 96 + + + + + BICOMP + 214 154 159 163 155 169 156 193 172 197 166 153 171 176 157 179 175 + + + ICCARM + 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 214 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + BICOMP + 121 + + + ICCARM + 147 + + + __cstat + 99 + + + + + BICOMP + 155 176 223 158 156 159 163 237 166 171 152 157 179 + + + ICCARM + 152 158 156 155 237 159 171 157 179 176 163 166 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + BICOMP + 134 + + + ICCARM + 146 + + + __cstat + 113 + + + + + BICOMP + 238 155 223 166 159 154 175 179 152 237 169 226 172 158 156 153 157 233 171 176 163 + + + ICCARM + 233 169 175 172 238 226 158 156 155 152 154 159 171 157 179 176 163 166 153 237 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + AARM + 127 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + BICOMP + 148 + + + ICCARM + 136 + + + __cstat + 125 + + + + + BICOMP + 157 159 154 155 156 179 197 193 166 153 171 176 163 + + + ICCARM + 197 154 155 159 171 157 179 176 163 166 153 156 193 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + BICOMP + 122 + + + ICCARM + 140 + + + __cstat + 92 + + + + + BICOMP + 65 103 163 159 155 118 34 115 82 151 156 141 81 73 114 101 94 24 45 56 77 95 68 104 67 106 97 111 246 193 172 70 142 64 36 57 61 66 42 43 85 88 84 100 105 69 109 108 110 59 116 107 91 75 63 62 83 180 169 239 154 166 153 171 176 157 179 175 161 160 177 162 165 44 38 39 52 25 23 35 50 51 17 47 30 26 48 71 49 79 41 74 22 58 53 86 37 55 29 46 54 78 27 72 40 76 28 33 21 87 18 80 20 32 31 60 19 197 + + + ICCARM + 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 246 161 160 70 83 180 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 239 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + BICOMP + 144 + + + ICCARM + 131 + + + __cstat + 112 + + + + + BICOMP + 157 159 155 176 163 154 197 171 179 156 193 166 153 + + + ICCARM + 159 155 171 157 179 176 163 197 154 166 153 156 193 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + BICOMP + 135 + + + ICCARM + 137 + + + __cstat + 89 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + BICOMP + 124 + + + ICCARM + 150 + + + __cstat + 123 + + + + + BICOMP + 163 159 155 158 156 154 166 153 152 171 176 157 179 + + + ICCARM + 152 158 156 155 154 159 171 157 179 176 163 166 153 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + BICOMP + 133 + + + ICCARM + 130 + + + __cstat + 90 + + + + + BICOMP + 159 155 171 153 156 193 166 176 163 239 154 157 179 197 + + + ICCARM + 197 154 155 159 171 157 179 176 163 166 153 156 193 239 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + BICOMP + 128 + + + ICCARM + 126 + + + __cstat + 98 + + + + + BICOMP + 157 159 155 176 163 154 197 171 179 156 193 166 153 + + + ICCARM + 159 155 171 157 179 176 163 197 154 166 153 156 193 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + BICOMP + 120 + + + ICCARM + 145 + + + __cstat + 143 + + + + + BICOMP + 156 159 163 155 152 193 158 169 154 166 153 171 176 157 179 172 197 175 + + + ICCARM + 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 152 158 + + + + + $PROJ_DIR$\Debug\Exe\wolfcrypt_benchmark.out + + + ILINK + 170 + + + + + ILINK + 178 244 139 127 130 136 140 225 137 150 147 146 119 145 243 242 126 131 189 164 173 167 174 168 + + + + + + Release + + + [MULTI_TOOL] + ILINK + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd new file mode 100644 index 000000000..56146314e --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd @@ -0,0 +1,3163 @@ + + + + 2 + + Debug + + ARM + + 1 + + C-SPY + 2 + + 28 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 1 + 1 + 1 + + + + + + + + ANGEL_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + + CMSISDAP_ID + 2 + + 4 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDBSERVER_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + IARROM_ID + 2 + + 1 + 1 + 1 + + + + + + + + + IJET_ID + 2 + + 8 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JLINK_ID + 2 + + 16 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LMIFTDI_ID + 2 + + 2 + 1 + 1 + + + + + + + + + + MACRAIGOR_ID + 2 + + 3 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + PEMICRO_ID + 2 + + 3 + 1 + 1 + + + + + + + + RDI_ID + 2 + + 2 + 1 + 1 + + + + + + + + + + + + + + + + STLINK_ID + 2 + + 3 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 1 + + + + + + + + TIFET_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + + + XDS100_ID + 2 + + 5 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\MQX\MQXRtosPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin + 0 + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin + 1 + + + $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin + 0 + + + $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin + 0 + + + + + Release + + ARM + + 0 + + C-SPY + 2 + + 28 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 1 + 1 + 0 + + + + + + + + ANGEL_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + + CMSISDAP_ID + 2 + + 4 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDBSERVER_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + IARROM_ID + 2 + + 1 + 1 + 0 + + + + + + + + + IJET_ID + 2 + + 8 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JLINK_ID + 2 + + 16 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LMIFTDI_ID + 2 + + 2 + 1 + 0 + + + + + + + + + + MACRAIGOR_ID + 2 + + 3 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + PEMICRO_ID + 2 + + 3 + 1 + 0 + + + + + + + + RDI_ID + 2 + + 2 + 1 + 0 + + + + + + + + + + + + + + + + STLINK_ID + 2 + + 3 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 0 + + + + + + + + TIFET_ID + 2 + + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + + XDS100_ID + 2 + + 5 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\MQX\MQXRtosPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin + 0 + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin + 1 + + + $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin + 0 + + + $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin + 0 + + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewp b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewp new file mode 100644 index 000000000..60588995a --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewp @@ -0,0 +1,1995 @@ + + + + 2 + + Debug + + ARM + + 1 + + General + 3 + + 24 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 31 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 9 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OBJCOPY + 0 + + 1 + 1 + 1 + + + + + + + + + CUSTOM + 3 + + + + 0 + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + ILINK + 0 + + 17 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IARCHIVE + 0 + + 0 + 1 + 1 + + + + + + + BILINK + 0 + + + + + Release + + ARM + + 0 + + General + 3 + + 24 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 31 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 9 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OBJCOPY + 0 + + 1 + 1 + 0 + + + + + + + + + CUSTOM + 3 + + + + 0 + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + ILINK + 0 + + 17 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IARCHIVE + 0 + + 0 + 1 + 0 + + + + + + + BILINK + 0 + + + + + Application + + $PROJ_DIR$\Application\runBenchmarks.c + + + + benchmark + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c + + + + Device_Support + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + + Setup + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewt new file mode 100644 index 000000000..6a4d28f19 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewt @@ -0,0 +1,2382 @@ + + + + 2 + + Debug + + ARM + + 1 + + C-STAT + 259 + + 259 + + 0 + + 1 + 600 + 0 + 2 + 0 + 1 + 100 + + + 1.3.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RuntimeChecking + 0 + + 2 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + Release + + ARM + + 0 + + C-STAT + 259 + + 259 + + 0 + + 1 + 600 + 0 + 2 + 0 + 1 + 100 + + + 1.3.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RuntimeChecking + 0 + + 2 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + Application + + $PROJ_DIR$\Application\runBenchmarks.c + + + + benchmark + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c + + + + Device_Support + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + + Setup + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.driver.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.driver.xcl new file mode 100644 index 000000000..4c14a8e81 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.driver.xcl @@ -0,0 +1,13 @@ +"--endian=little" + +"--cpu=Cortex-M7" + +"--fpu=VFPv5_D16" + +"--semihosting" + +"--multicore_nr_of_cores=1" + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.general.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.general.xcl new file mode 100644 index 000000000..c83bfd94c --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.Debug.general.xcl @@ -0,0 +1,11 @@ +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armproc.dll" + +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armsim2.dll" + +"C:\Users\boz_windows\Desktop\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_lib_SAMV71_XULT\Debug\Bin\wolfcrypt_lib.a" + +--plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armbat.dll" + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.crun b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.crun new file mode 100644 index 000000000..ef39dce8f --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.crun @@ -0,0 +1,16 @@ + + + + 1 + + + * + * + * + 0 + 1 + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dbgdt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dbgdt new file mode 100644 index 000000000..e068f91d1 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dbgdt @@ -0,0 +1,5 @@ + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dni b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dni new file mode 100644 index 000000000..03820ca9d --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/settings/wolfcrypt_lib.dni @@ -0,0 +1,45 @@ +[Stack] +FillEnabled=0 +OverflowWarningsEnabled=1 +WarningThreshold=90 +SpWarningsEnabled=1 +WarnLogOnly=1 +UseTrigger=1 +TriggerName=main +LimitSize=0 +ByteLimit=50 +[InterruptLog] +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +SumSortOrder=0 +[DataLog] +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +[Disassemble mode] +mode=0 +[Breakpoints2] +Bp0=_ 1 "STD_CODE2" "{$PROJ_DIR$\..\..\..\..\wolfssl\ssl.h}.977.1" 0 0 1 "" 0 "" +Count=1 +[Interrupts] +Enabled=1 +[MemConfig] +Base=1 +Manual=0 +Ddf=1 +TypeViol=0 +Stop=1 +[Trace1] +Enabled=0 +ShowSource=1 +[Aliases] +Count=0 +SuppressDialog=0 +[Simulator] +Freq=10000000 +MultiCoreRunAll=1 diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.dep b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.dep new file mode 100644 index 000000000..6ae9972f1 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.dep @@ -0,0 +1,906 @@ + + + + 2 + 2537152460 + + Debug + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\aes.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asn.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha20_poly1305.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dsa.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\des3.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\coding.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dh.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\random.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hmac.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md5.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hash.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\poly1305.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rsa.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha256.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\pwdbased.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rabbit.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\misc.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\memory.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\ecc.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md4.c + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hmac.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md2.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md4.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\aes.h + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_encrypt.c + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\tfm.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_port.c + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\misc.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\pwdbased.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\coding.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha512.c + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\error-crypt.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\openssl\bn.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\poly1305.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\ssl.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hash.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\openssl\ssl.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\openssl\ec.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ecc.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\version.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h + $PROJ_DIR$\Debug\Obj\dsa.__cstat.et + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\Debug\Obj\sha512.__cstat.et + $PROJ_DIR$\Debug\Obj\asn.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\Debug\Obj\sha.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\Debug\Obj\misc.__cstat.et + $PROJ_DIR$\Debug\Obj\memory.__cstat.et + $PROJ_DIR$\Debug\Obj\coding.__cstat.et + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\Debug\Obj\pwdbased.pbi + $PROJ_DIR$\Debug\Obj\hash.__cstat.et + $PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h + $PROJ_DIR$\Debug\Obj\hash.pbi + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\Debug\Obj\dsa.o + $TOOLKIT_DIR$\inc\c\time.h + $PROJ_DIR$\Debug\Obj\sha512.pbi + $PROJ_DIR$\Debug\Obj\des3.__cstat.et + $PROJ_DIR$\Debug\Obj\sha256.__cstat.et + $PROJ_DIR$\Debug\Obj\wc_encrypt.__cstat.et + $PROJ_DIR$\Debug\Obj\wc_encrypt.pbi + $PROJ_DIR$\Debug\Obj\rsa.__cstat.et + $PROJ_DIR$\Debug\Obj\md5.__cstat.et + $TOOLKIT_DIR$\inc\c\math.h + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\Debug\Obj\hmac.__cstat.et + $PROJ_DIR$\Debug\Obj\dh.__cstat.et + $PROJ_DIR$\Debug\Obj\sha.pbi + $PROJ_DIR$\Debug\Obj\chacha20_poly1305.__cstat.et + $PROJ_DIR$\Debug\Obj\wc_port.__cstat.et + $PROJ_DIR$\Debug\Obj\rabbit.__cstat.et + $PROJ_DIR$\Debug\Obj\memory.pbi + $PROJ_DIR$\Debug\Obj\wc_port.pbi + $PROJ_DIR$\Debug\Obj\hmac.pbi + $PROJ_DIR$\Debug\Obj\md4.o + $PROJ_DIR$\Debug\Obj\md4.__cstat.et + $TOOLKIT_DIR$\inc\c\limits.h + $TOOLKIT_DIR$\inc\c\xtgmath.h + $PROJ_DIR$\Debug\Obj\sha.o + $PROJ_DIR$\Debug\Obj\aes.__cstat.et + $PROJ_DIR$\Debug\Obj\dsa.pbi + $PROJ_DIR$\Debug\Obj\chacha.__cstat.et + $PROJ_DIR$\Debug\Obj\tfm.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\Debug\Obj\md5.pbi + $PROJ_DIR$\Debug\Obj\md4.pbi + $PROJ_DIR$\Debug\Obj\random.__cstat.et + $PROJ_DIR$\Debug\Obj\des3.o + $TOOLKIT_DIR$\inc\c\xlocale.h + $PROJ_DIR$\Debug\Obj\poly1305.o + $PROJ_DIR$\Debug\Obj\hmac.o + $PROJ_DIR$\Debug\Obj\dh.pbi + $PROJ_DIR$\Debug\Obj\pwdbased.__cstat.et + $PROJ_DIR$\Debug\Obj\wolfcrypt_lib.pbd + $PROJ_DIR$\Debug\Obj\ecc.pbi + $PROJ_DIR$\Debug\Obj\chacha20_poly1305.pbi + $PROJ_DIR$\Debug\Obj\memory.o + $PROJ_DIR$\Debug\Obj\hash.o + $PROJ_DIR$\Debug\Obj\rabbit.pbi + $PROJ_DIR$\Debug\Obj\asn.o + $PROJ_DIR$\Debug\Obj\aes.pbi + $PROJ_DIR$\Debug\Obj\coding.o + $TOOLKIT_DIR$\inc\c\xlocale_c.h + $PROJ_DIR$\Debug\Obj\coding.pbi + $TOOLKIT_DIR$\inc\c\ctype.h + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\Debug\Obj\chacha.o + $PROJ_DIR$\Debug\Obj\tfm.pbi + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\Debug\Obj\md5.o + $PROJ_DIR$\Debug\Obj\random.o + $PROJ_DIR$\Debug\Obj\misc.pbi + $PROJ_DIR$\Debug\Obj\poly1305.pbi + $PROJ_DIR$\Debug\Obj\chacha.pbi + $PROJ_DIR$\Debug\Obj\sha256.pbi + $PROJ_DIR$\Debug\Obj\poly1305.__cstat.et + $PROJ_DIR$\Debug\Obj\sha512.o + $PROJ_DIR$\Debug\Bin\wolfcrypt_lib.a + $PROJ_DIR$\Debug\Obj\ecc.__cstat.et + $PROJ_DIR$\Debug\Obj\chacha20_poly1305.o + $PROJ_DIR$\Debug\Obj\pwdbased.o + $PROJ_DIR$\Debug\Obj\rsa.pbi + $PROJ_DIR$\Debug\Obj\wc_encrypt.o + $PROJ_DIR$\Debug\Obj\aes.o + $TOOLKIT_DIR$\inc\c\ymath.h + $PROJ_DIR$\Debug\Obj\misc.o + $PROJ_DIR$\Debug\Obj\dh.o + $PROJ_DIR$\Debug\Obj\ecc.o + $PROJ_DIR$\Debug\Obj\random.pbi + $TOOLKIT_DIR$\inc\c\xlocaleuse.h + $PROJ_DIR$\Debug\Obj\rsa.o + $PROJ_DIR$\Debug\Obj\asn.pbi + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $TOOLKIT_DIR$\inc\c\xmtx.h + $PROJ_DIR$\Debug\Obj\rabbit.o + $PROJ_DIR$\Debug\Obj\des3.pbi + $TOOLKIT_DIR$\inc\c\wchar.h + $TOOLKIT_DIR$\inc\c\xtls.h + $PROJ_DIR$\Debug\Obj\wc_port.o + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_encrypt.h + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asm.c + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h + $PROJ_DIR$\Debug\Obj\tfm.o + $PROJ_DIR$\Debug\Obj\sha256.o + $PROJ_DIR$\..\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c + + + [ROOT_NODE] + + + IARCHIVE + 142 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\aes.c + + + BICOMP + 125 + + + ICCARM + 148 + + + __cstat + 104 + + + + + BICOMP + 63 48 129 133 127 130 47 45 78 108 113 46 75 49 68 157 28 33 38 25 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 28 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asn.c + + + BICOMP + 156 + + + ICCARM + 124 + + + __cstat + 65 + + + + + BICOMP + 37 49 167 61 45 58 33 48 68 22 38 63 40 39 55 80 23 157 78 32 41 24 46 42 30 75 31 47 133 129 108 113 127 130 34 43 51 27 25 72 66 76 89 162 154 158 161 101 + + + ICCARM + 49 48 75 41 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 37 61 101 32 30 43 55 34 23 167 31 51 27 58 40 24 22 46 39 42 33 38 80 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha20_poly1305.c + + + BICOMP + 120 + + + ICCARM + 144 + + + __cstat + 93 + + + + + BICOMP + 78 66 63 46 75 89 59 48 25 130 72 76 162 158 52 33 53 38 45 49 47 133 129 68 157 154 161 108 113 127 + + + ICCARM + 49 48 75 52 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 59 53 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dsa.c + + + BICOMP + 105 + + + ICCARM + 79 + + + __cstat + 62 + + + + + BICOMP + 108 25 72 78 37 33 130 63 113 45 51 127 32 46 23 48 75 30 49 47 133 129 68 157 101 66 76 89 162 154 158 161 61 + + + ICCARM + 49 48 75 32 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 30 37 61 101 46 33 23 51 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha.c + + + BICOMP + 138 + + + ICCARM + 131 + + + __cstat + 106 + + + + + BICOMP + 113 75 133 129 45 33 47 63 78 108 59 38 48 49 68 157 127 130 46 25 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 59 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\des3.c + + + BICOMP + 160 + + + ICCARM + 112 + + + __cstat + 82 + + + + + BICOMP + 75 133 129 63 47 127 130 45 46 48 49 78 108 113 42 33 38 25 68 157 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 42 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\coding.c + + + BICOMP + 128 + + + ICCARM + 126 + + + __cstat + 71 + + + + + BICOMP + 113 48 63 49 68 45 78 108 46 75 47 133 129 127 130 40 33 25 72 157 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 40 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dh.c + + + BICOMP + 116 + + + ICCARM + 151 + + + __cstat + 91 + + + + + BICOMP + 102 133 45 129 63 127 130 78 32 47 108 113 46 49 48 68 157 61 31 88 75 37 25 72 66 76 89 162 154 158 161 101 30 149 + + + ICCARM + 49 48 75 31 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 37 61 101 32 30 46 88 149 102 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\random.c + + + BICOMP + 153 + + + ICCARM + 135 + + + __cstat + 111 + + + + + BICOMP + 30 108 38 78 48 49 45 63 113 75 47 133 129 127 130 32 46 25 68 157 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 32 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 30 46 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hmac.c + + + BICOMP + 98 + + + ICCARM + 115 + + + __cstat + 90 + + + + + BICOMP + 45 113 63 47 78 108 46 23 133 129 127 130 22 48 75 49 68 157 34 30 167 25 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 22 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 34 23 30 167 46 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md5.c + + + BICOMP + 109 + + + ICCARM + 134 + + + __cstat + 87 + + + + + BICOMP + 63 162 49 48 68 78 38 157 158 46 45 47 133 129 34 75 25 130 72 66 76 89 154 161 108 113 127 + + + ICCARM + 49 48 75 34 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hash.c + + + BICOMP + 77 + + + ICCARM + 122 + + + __cstat + 74 + + + + + BICOMP + 45 127 130 133 129 63 27 55 47 78 108 113 51 23 32 46 49 48 68 157 43 34 58 101 30 33 41 75 25 72 66 76 89 162 154 158 161 37 31 61 167 + + + ICCARM + 49 48 75 33 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 41 37 61 101 32 30 43 55 34 23 167 31 51 27 58 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\poly1305.c + + + BICOMP + 137 + + + ICCARM + 114 + + + __cstat + 140 + + + + + BICOMP + 133 129 63 33 127 130 45 53 38 47 78 108 113 46 49 48 68 157 75 25 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 53 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rsa.c + + + BICOMP + 146 + + + ICCARM + 155 + + + __cstat + 86 + + + + + BICOMP + 63 45 47 34 33 133 129 61 32 38 49 48 68 157 78 30 43 46 75 37 55 25 130 72 108 113 127 23 66 76 89 162 154 158 161 101 167 + + + ICCARM + 49 48 75 43 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 37 61 101 32 30 55 34 23 167 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha256.c + + + BICOMP + 139 + + + ICCARM + 169 + + + __cstat + 83 + + + + + BICOMP + 38 75 25 72 127 130 76 63 46 48 78 66 89 108 113 45 30 33 49 47 133 129 68 157 162 154 158 161 + + + ICCARM + 49 48 75 30 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 33 46 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\pwdbased.c + + + BICOMP + 73 + + + ICCARM + 145 + + + __cstat + 117 + + + + + BICOMP + 63 162 72 76 78 45 130 158 167 46 25 34 22 23 66 89 154 161 30 101 39 37 38 48 75 49 47 133 129 68 157 108 113 127 61 32 + + + ICCARM + 49 48 75 39 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 34 23 22 30 167 37 61 101 32 46 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rabbit.c + + + BICOMP + 123 + + + ICCARM + 159 + + + __cstat + 95 + + + + + BICOMP + 48 63 49 68 127 130 45 46 75 47 133 129 78 108 113 164 33 38 25 72 157 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 164 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\misc.c + + + BICOMP + 136 + + + ICCARM + 150 + + + __cstat + 69 + + + + + BICOMP + 130 45 72 76 63 158 162 78 38 25 66 89 48 75 49 47 133 129 68 157 108 154 161 113 127 + + + ICCARM + 49 48 75 38 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\memory.c + + + BICOMP + 96 + + + ICCARM + 121 + + + __cstat + 70 + + + + + BICOMP + 72 68 78 46 48 130 76 63 75 66 89 25 108 162 158 47 45 157 49 133 129 154 161 113 127 + + + ICCARM + 49 48 75 47 130 63 78 66 76 89 72 157 68 45 25 133 108 129 113 162 158 154 127 161 46 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha.c + + + BICOMP + 92 + + + ICCARM + 103 + + + __cstat + 67 + + + + + BICOMP + 157 127 130 49 48 68 63 33 45 47 133 129 78 108 113 23 46 38 75 25 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 23 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 33 46 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\ecc.c + + + BICOMP + 119 + + + ICCARM + 152 + + + __cstat + 143 + + + + + BICOMP + 78 23 33 157 68 63 32 167 58 48 49 61 50 45 41 38 75 47 133 129 108 113 127 130 54 37 57 46 25 72 66 76 89 162 154 158 161 101 30 56 60 31 55 43 51 34 27 + + + ICCARM + 49 48 75 58 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 37 61 101 32 30 57 56 54 60 50 41 43 55 34 23 167 31 51 27 46 33 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md4.c + + + BICOMP + 110 + + + ICCARM + 99 + + + __cstat + 100 + + + + + BICOMP + 72 76 158 63 130 48 162 78 75 25 66 89 26 38 45 49 47 133 129 68 157 108 154 161 113 127 + + + ICCARM + 49 48 75 26 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 38 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_encrypt.c + + + BICOMP + 85 + + + ICCARM + 147 + + + __cstat + 84 + + + + + BICOMP + 66 63 46 78 42 45 25 130 72 89 154 161 28 165 48 75 49 47 133 129 68 76 162 158 157 108 113 127 + + + ICCARM + 49 48 75 28 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 42 165 46 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\tfm.c + + + BICOMP + 132 + + + ICCARM + 168 + + + __cstat + 107 + + + + + BICOMP + 47 45 63 113 32 75 78 108 38 166 133 129 127 130 49 61 48 68 157 101 25 72 66 76 89 162 154 158 161 30 + + + ICCARM + 49 48 75 38 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 32 30 61 101 166 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_port.c + + + BICOMP + 97 + + + ICCARM + 163 + + + __cstat + 94 + + + + + BICOMP + 49 48 68 45 113 157 78 46 75 47 133 129 63 108 127 130 33 25 72 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 46 33 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha512.c + + + BICOMP + 81 + + + ICCARM + 141 + + + __cstat + 64 + + + + + BICOMP + 25 72 127 130 46 45 63 38 78 108 113 167 33 48 75 49 47 133 129 68 157 66 76 89 162 154 158 161 + + + ICCARM + 49 48 75 167 45 25 47 130 63 78 66 76 89 72 157 68 133 108 129 113 162 158 154 127 161 33 46 38 + + + + + [REBUILD_ALL] + + + + Release + + + [MULTI_TOOL] + ILINK + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewd b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewd new file mode 100644 index 000000000..e4e3878a4 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewd @@ -0,0 +1,3163 @@ + + + + 2 + + Debug + + ARM + + 1 + + C-SPY + 2 + + 28 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 1 + 1 + 1 + + + + + + + + ANGEL_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + + CMSISDAP_ID + 2 + + 4 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDBSERVER_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + IARROM_ID + 2 + + 1 + 1 + 1 + + + + + + + + + IJET_ID + 2 + + 8 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JLINK_ID + 2 + + 16 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LMIFTDI_ID + 2 + + 2 + 1 + 1 + + + + + + + + + + MACRAIGOR_ID + 2 + + 3 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + PEMICRO_ID + 2 + + 3 + 1 + 1 + + + + + + + + RDI_ID + 2 + + 2 + 1 + 1 + + + + + + + + + + + + + + + + STLINK_ID + 2 + + 3 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 1 + + + + + + + + TIFET_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + + + XDS100_ID + 2 + + 5 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\MQX\MQXRtosPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin + 0 + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin + 1 + + + $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin + 0 + + + $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin + 0 + + + + + Release + + ARM + + 0 + + C-SPY + 2 + + 28 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 1 + 1 + 0 + + + + + + + + ANGEL_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + + CMSISDAP_ID + 2 + + 4 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDBSERVER_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + IARROM_ID + 2 + + 1 + 1 + 0 + + + + + + + + + IJET_ID + 2 + + 8 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JLINK_ID + 2 + + 16 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LMIFTDI_ID + 2 + + 2 + 1 + 0 + + + + + + + + + + MACRAIGOR_ID + 2 + + 3 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + PEMICRO_ID + 2 + + 3 + 1 + 0 + + + + + + + + RDI_ID + 2 + + 2 + 1 + 0 + + + + + + + + + + + + + + + + STLINK_ID + 2 + + 3 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 0 + + + + + + + + TIFET_ID + 2 + + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + + XDS100_ID + 2 + + 5 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\MQX\MQXRtosPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin + 0 + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin + 1 + + + $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin + 0 + + + $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin + 0 + + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewp b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewp new file mode 100644 index 000000000..3dd4eac93 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewp @@ -0,0 +1,2010 @@ + + + + 2 + + Debug + + ARM + + 1 + + General + 3 + + 24 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 31 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 9 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OBJCOPY + 0 + + 1 + 1 + 1 + + + + + + + + + CUSTOM + 3 + + + + 0 + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + ILINK + 0 + + 17 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IARCHIVE + 0 + + 0 + 1 + 1 + + + + + + + BILINK + 0 + + + + + Release + + ARM + + 0 + + General + 3 + + 24 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 31 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 9 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OBJCOPY + 0 + + 1 + 1 + 0 + + + + + + + + + CUSTOM + 3 + + + + 0 + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + ILINK + 0 + + 17 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IARCHIVE + 0 + + 0 + 1 + 0 + + + + + + + BILINK + 0 + + + + + wolfcrypt_sources + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\aes.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asn.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha20_poly1305.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\coding.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\des3.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dh.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dsa.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\ecc.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hash.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hmac.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md4.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md5.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\memory.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\misc.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\poly1305.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\pwdbased.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rabbit.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\random.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rsa.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha256.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha512.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\tfm.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_encrypt.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_port.c + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewt new file mode 100644 index 000000000..8dfc682f0 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/wolfcrypt_lib.ewt @@ -0,0 +1,2400 @@ + + + + 2 + + Debug + + ARM + + 1 + + C-STAT + 259 + + 259 + + 0 + + 1 + 600 + 0 + 2 + 0 + 1 + 100 + + + 1.3.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RuntimeChecking + 0 + + 2 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + Release + + ARM + + 0 + + C-STAT + 259 + + 259 + + 0 + + 1 + 600 + 0 + 2 + 0 + 1 + 100 + + + 1.3.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RuntimeChecking + 0 + + 2 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + wolfcrypt_sources + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\aes.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asn.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha20_poly1305.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\coding.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\des3.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dh.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dsa.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\ecc.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hash.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hmac.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md4.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md5.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\memory.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\misc.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\poly1305.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\pwdbased.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rabbit.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\random.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rsa.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha256.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha512.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\tfm.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_encrypt.c + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_port.c + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/Application/runWolfcryptTests.c b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/Application/runWolfcryptTests.c new file mode 100644 index 000000000..63165c238 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/Application/runWolfcryptTests.c @@ -0,0 +1,31 @@ +#include "RTOS.h" +#include "BSP.h" +#include + +static OS_STACKPTR int WLFSTACK[20000]; /* Stack Size */ +static OS_TASK WLFTASK; /* Task-control-blocks */ + +static void wolfTask(void) { + wolfcrypt_test(NULL); + while (1) { + BSP_ToggleLED(1); + OS_Delay(200); + } +} + +/********************************************************************* +* +* main() +*/ +int main(void) { + OS_IncDI(); /* Initially disable interrupts */ + OS_InitKern(); /* Initialize OS */ + OS_InitHW(); /* Initialize Hardware for OS */ + BSP_Init(); /* Initialize LED ports */ + /* You need to create at least one task before calling OS_Start() */ + OS_CREATETASK(&WLFTASK, "Tests task", wolfTask, 100, WLFSTACK); + OS_Start(); /* Start multitasking */ + return 0; +} + +/****** End Of File *************************************************/ diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.driver.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.driver.xcl new file mode 100644 index 000000000..80545955e --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.driver.xcl @@ -0,0 +1,33 @@ +"--endian=little" + +"--cpu=Cortex-M7" + +"--jlink_exec_command" + +"device ATSAMV71Q21" + +"--fpu=VFPv5_D16" + +"-p" + +"C:\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\ATSAMV71Q21.svd" + +"--semihosting" + +"--drv_communication=USB0" + +"--drv_interface_speed=auto" + +"--jlink_initial_speed=32" + +"--jlink_reset_strategy=0,0" + +"--drv_interface=SWD" + +"--drv_catch_exceptions=0x000" + +"--drv_swo_clock_setup=72000000,0,1000000" + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.general.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.general.xcl new file mode 100644 index 000000000..8dfd52a15 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.Debug.general.xcl @@ -0,0 +1,13 @@ +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armproc.dll" + +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armjlink2.dll" + +"C:\Users\boz_windows\Desktop\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Debug\Exe\wolfcrypt_test.out" + +--plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armbat.dll" + +--macro "C:\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\samv7-ek-flash.mac" + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.crun b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.crun new file mode 100644 index 000000000..ef39dce8f --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.crun @@ -0,0 +1,16 @@ + + + + 1 + + + * + * + * + 0 + 1 + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dbgdt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dbgdt new file mode 100644 index 000000000..b64932dcf --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dbgdt @@ -0,0 +1,115 @@ + + + + + + + + + 56820 + + + + + + 2061516441 + + + + + + + 124272727 + + + + + + Disassembly_I0 + + + + 50020 + + + + 11 + + + + + + + 110$PROJ_DIR$\TermIOInput.txt10 + + + + + + + + + + TabID-12298-19447 + Debug Log + Debug-Log + + + + TabID-11775-19457 + Build + Build + + + + + 0 + + + TabID-23046-19451 + Workspace + Workspace + + + wolfcrypt_test + + + + 0 + + + TabID-1026-19454 + Disassembly + Disassembly + + + + + 0 + + + TabID-32226-19483 + Terminal I/O + TerminalIO + + + + + 0 + + + + + + TextEditor$WS_DIR$\Application\OS_StartLEDBlink.c000004123662366TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\benchmark\benchmark.c00000211000TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfssl\ssl.h000009334117041170TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c000001500TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c000002822082208TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\fp_sqr_comba_6.i000001910941094TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\tfm.c000004781119511195TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c000009848634863TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c000003281156911569TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Application\OS_StartLEDBlink.c000004928702870TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000012422422TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c0000012412412TextEditor$WS_DIR$\..\..\..\..\..\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000012422422TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c000002011114611146TextEditor$WS_DIR$\..\..\..\..\..\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c000006412412TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c000003281156911569150100000010000001 + + + + + + + iaridepm.enu1debuggergui.enu1armjlink2.enu1-2-2304198-2-2200200154560336134154560514286-2-2304359-2-2200200154560336134278980514286-2357304765357-2200200154560336134315301514286-2-21981296-2-212982001003091336134154560336134 + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dni b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dni new file mode 100644 index 000000000..d8653b199 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test.dni @@ -0,0 +1,134 @@ +[Stack] +FillEnabled=0 +OverflowWarningsEnabled=1 +WarningThreshold=90 +SpWarningsEnabled=1 +WarnLogOnly=1 +UseTrigger=1 +TriggerName=main +LimitSize=0 +ByteLimit=50 +[DebugChecksum] +Checksum=99633143 +[CodeCoverage] +Enabled=_ 0 +[Exceptions] +StopOnUncaught=_ 0 +StopOnThrow=_ 0 +[CallStack] +ShowArgs=0 +[Disassembly] +MixedMode=1 +[Interrupts] +Enabled=1 +[MemConfig] +Base=1 +Manual=0 +Ddf=1 +TypeViol=0 +Stop=1 +[Simulator] +Freq=10000000 +MultiCoreRunAll=1 +[JLinkDriver] +CStepIntDis=_ 0 +LeaveTargetRunning=_ 0 +TraceBufferSize=0x00010000 +TraceStallIfFIFOFull=0x00000000 +TracePortSize=0x00000000 +[SWOTraceHWSettings] +OverrideDefaultClocks=0 +CpuClock=72000000 +ClockAutoDetect=0 +ClockWanted=1000000 +JtagSpeed=1000000 +Prescaler=72 +TimeStampPrescIndex=0 +TimeStampPrescData=0 +PcSampCYCTAP=0 +PcSampPOSTCNT=0 +PcSampIndex=31 +DataLogMode=0 +ITMportsEnable=0 +ITMportsTermIO=0 +ITMportsLogFile=0 +ITMlogFile=$PROJ_DIR$\ITM.log +[Trace1] +Enabled=0 +ShowSource=1 +[Trace2] +Enabled=0 +ShowSource=0 +[SWOTraceWindow] +PcSampling=0 +InterruptLogs=0 +ForcedTimeStamps=0 +EventCPI=0 +EventEXC=0 +EventFOLD=0 +EventLSU=0 +EventSLEEP=0 +[PowerLog] +Title_0=I0 +Symbol_0=0 4 0 +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +LiveEnabled=0 +LiveFile=PowerLogLive.log +[DataLog] +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +[EventLog] +Title_0=Ch3 +Symbol_0=0 4 1 +Title_1=Ch2 +Symbol_1=0 4 1 +Title_2=Ch1 +Symbol_2=0 4 1 +Title_3=Ch0 +Symbol_3=0 4 1 +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +SumSortOrder=0 +[InterruptLog] +LogEnabled=0 +GraphEnabled=0 +ShowTimeLog=1 +SumEnabled=0 +ShowTimeSum=1 +SumSortOrder=0 +[Log file] +LoggingEnabled=_ 0 +LogFile=_ "" +Category=_ 0 +[TermIOLog] +LoggingEnabled=_ 0 +LogFile=_ "" +[DriverProfiling] +Enabled=0 +Mode=1 +Graph=0 +Symbiont=0 +Exclusions= +[CallStackLog] +Enabled=0 +[CallStackStripe] +ShowTiming=1 +[PowerProbe] +Frequency=10000 +Probe0=I0 +ProbeSetup0=2 1 1 2 0 0 +[Disassemble mode] +mode=0 +[Breakpoints2] +Count=0 +[Aliases] +Count=0 +SuppressDialog=0 diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test_Debug.jlink b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test_Debug.jlink new file mode 100644 index 000000000..3a2fb4743 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/settings/wolfcrypt_test_Debug.jlink @@ -0,0 +1,39 @@ +[BREAKPOINTS] +ForceImpTypeAny = 0 +ShowInfoWin = 1 +EnableFlashBP = 2 +BPDuringExecution = 0 +[CFI] +CFISize = 0x00 +CFIAddr = 0x00 +[CPU] +MonModeVTableAddr = 0xFFFFFFFF +MonModeDebug = 0 +MaxNumAPs = 0 +LowPowerHandlingMode = 0 +OverrideMemMap = 0 +AllowSimulation = 1 +ScriptFile="" +[FLASH] +CacheExcludeSize = 0x00 +CacheExcludeAddr = 0x00 +MinNumBytesFlashDL = 0 +SkipProgOnCRCMatch = 1 +VerifyDownload = 1 +AllowCaching = 1 +EnableFlashDL = 2 +Override = 1 +Device="ATSAMV71Q21" +[GENERAL] +WorkRAMSize = 0x00 +WorkRAMAddr = 0x00 +RAMUsageLimit = 0x00 +[SWO] +SWOLogFile="" +[MEM] +RdOverrideOrMask = 0x00 +RdOverrideAndMask = 0xFFFFFFFF +RdOverrideAddr = 0xFFFFFFFF +WrOverrideOrMask = 0x00 +WrOverrideAndMask = 0xFFFFFFFF +WrOverrideAddr = 0xFFFFFFFF diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.dep b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.dep new file mode 100644 index 000000000..b9e151dfb --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.dep @@ -0,0 +1,1031 @@ + + + + 2 + 4231226308 + + Debug + + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ripemd.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h + $PROJ_DIR$\Debug\List\test.lst + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\aes.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hmac.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\srp.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\BSP.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\certs_test.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hc128.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\error-crypt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\efc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gpbr.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pmc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usart.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\xdmac.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\mem_track.h + $PROJ_DIR$\..\embOS_SAMV71_XULT_Linker_Script\samv71q21_wolfssl.icf + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\tc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rswdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\matrix.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\chipid.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_samv71.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\smc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Int.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\smc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\matrix.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc3.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71q21.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piod.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rstc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\ssc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piob.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\chipid.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\acc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart3.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\OS_Config.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\acc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\utmi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mlb.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\qspi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\efc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\xdmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\aes.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\aes.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\icm.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\ssc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\dacc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\supc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pio.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rstc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rswdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\hsmci.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\afec.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\isi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\trng.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\twihs.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\wdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\sdramc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pmc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\isi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\trng.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mcan.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pwm.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mlb.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart4.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gpbr.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\utmi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs2.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\spi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\pio\samv71q21.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gmac.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usbhs.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\supc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Conf.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioe.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\dacc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\sdramc.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\icm.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\wdt.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\qspi.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan0.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\uart.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\hsmci.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart1.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usbhs.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioa.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + $PROJ_DIR$\Application\runWolfcryptTests.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\test\test.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + $PROJ_DIR$\Debug\List\SEGGER_HardFaultHandler.lst + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\Debug\List\JLINKMEM_Process.lst + $PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h + $PROJ_DIR$\Debug\List\SEGGER_SYSVIEW_embOS.lst + $TOOLKIT_DIR$\inc\c\wchar.h + $TOOLKIT_DIR$\inc\c\xlocale_c.h + $TOOLKIT_DIR$\inc\c\xtls.h + $TOOLKIT_DIR$\inc\c\intrinsics.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\Debug\List\runWolfcryptTests.lst + $TOOLKIT_DIR$\inc\c\limits.h + $PROJ_DIR$\Debug\List\SEGGER_SYSVIEW.lst + $TOOLKIT_DIR$\CMSIS\Include\core_cmInstr.h + $TOOLKIT_DIR$\inc\c\xlocale.h + $PROJ_DIR$\Debug\List\BSP.lst + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\Debug\List\system_sam.lst + $PROJ_DIR$\Debug\Obj\test.o + $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h + $TOOLKIT_DIR$\inc\c\stdio.h + $TOOLKIT_DIR$\inc\c\ystdio.h + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\Debug\List\xmtx2.lst + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\Debug\Obj.o + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $TOOLKIT_DIR$\inc\c\cmsis_iar.h + $TOOLKIT_DIR$\CMSIS\Include\core_cmSimd.h + $TOOLKIT_DIR$\inc\c\xmtx.h + $TOOLKIT_DIR$\inc\c\xlocaleuse.h + $PROJ_DIR$\Debug\List\SEGGER_RTT_printf.lst + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\Debug\List\OS_Error.lst + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.pbi + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + $PROJ_DIR$\Debug\List\wolfcrypt_test.map + $PROJ_DIR$\Debug\Obj\test.pbi + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.pbi + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.pbi + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_ConfDefaults.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + $PROJ_DIR$\Debug\Obj\runWolfcryptTests.__cstat.et + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + $PROJ_DIR$\..\..\..\..\wolfcrypt\test\test.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + $PROJ_DIR$\Debug\Obj\OS_Error.pbi + $PROJ_DIR$\Debug\List\RTOSInit_SAMV71_CMSIS.lst + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.pbi + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + $PROJ_DIR$\Debug\Obj\BSP.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.pbi + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + $PROJ_DIR$\Debug\Obj\startup_sam.__cstat.et + $PROJ_DIR$\Debug\Obj\OS_Error.__cstat.et + $PROJ_DIR$\Debug\Obj\xmtx.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.pbi + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.__cstat.et + $PROJ_DIR$\..\embOS_wolfcrypt_lib_SAMV71_XULT\Debug\Bin\wolfcrypt_lib.a + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.__cstat.et + $TOOLKIT_DIR$\lib\dl7M_tln.a + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.__cstat.et + $PROJ_DIR$\Debug\Exe\wolfcrypt_test.out + $PROJ_DIR$\Debug\Obj\system_sam.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.o + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\test\test.h + $PROJ_DIR$\Debug\Obj\xmtx2.pbi + $PROJ_DIR$\Debug\List\SEGGER_SYSVIEW_Config_embOS.lst + $PROJ_DIR$\Debug\List\xmtx.lst + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\Debug\Obj\wolfcrypt_test.pbd + $PROJ_DIR$\Debug\Obj\system_sam.o + $PROJ_DIR$\Debug\Obj\startup_sam.pbi + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.__cstat.et + $PROJ_DIR$\Debug\Obj\startup_sam.o + $PROJ_DIR$\Debug\Obj\BSP.__cstat.et + $PROJ_DIR$\Debug\Obj\system_sam.pbi + $PROJ_DIR$\Debug\Obj\xmtx2.o + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.__cstat.et + $PROJ_DIR$\Debug\Obj\runWolfcryptTests.pbi + $PROJ_DIR$\Debug\Obj\runWolfcryptTests.o + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.o + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.o + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\Debug\Obj\xmtx2.__cstat.et + $PROJ_DIR$\Debug\List\SEGGER_RTT.lst + $PROJ_DIR$\Debug\Obj\xmtx.o + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.__cstat.et + $PROJ_DIR$\Debug\List\startup_sam.lst + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.o + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\camellia.h + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.o + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\Debug\Obj\xmtx.__cstat.et + $TOOLKIT_DIR$\CMSIS\Include\core_cm7.h + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.o + $PROJ_DIR$\Debug\Obj\BSP.o + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\poly1305.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ecc.h + $PROJ_DIR$\Debug\Obj\test.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.o + $TOOLKIT_DIR$\inc\c\stdint.h + $TOOLKIT_DIR$\CMSIS\Include\core_cmFunc.h + $TOOLKIT_DIR$\lib\m7M_tlv.a + $PROJ_DIR$\Debug\Obj\OS_Error.o + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.o + $PROJ_DIR$\Debug\Obj\HardFaultHandler.o + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\RTOS.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\arc4.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\coding.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md4.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hash.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\idea.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\pwdbased.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_Conf.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md2.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\Global.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER.h + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Lib\os7m_tlv_dp.a + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\JLINKMEM.h + + + [ROOT_NODE] + + + ILINK + 211 172 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + BICOMP + 226 + + + ICCARM + 151 220 + + + __cstat + 212 + + + + + BICOMP + 244 257 68 75 91 79 106 90 134 246 64 110 112 88 98 95 70 82 65 62 78 74 113 96 108 100 101 89 147 35 45 61 111 85 87 63 93 76 99 67 73 55 109 104 97 92 84 105 83 114 103 107 86 150 162 27 56 26 51 14 59 25 48 15 50 21 46 32 60 20 77 16 47 17 39 52 80 24 58 72 53 29 42 71 34 22 69 57 54 28 33 81 41 13 40 36 37 23 38 66 43 160 166 153 158 258 141 161 94 + + + ICCARM + 94 35 257 244 134 160 153 158 166 150 246 147 161 141 258 162 27 45 56 70 26 61 51 75 14 111 59 82 25 85 48 64 15 87 50 65 21 63 46 79 32 93 60 62 20 76 77 110 16 99 47 78 17 67 39 68 52 73 80 74 24 55 58 112 72 109 53 113 29 104 42 106 71 97 34 96 22 92 69 88 57 84 54 108 28 105 33 91 81 83 41 100 13 114 40 98 36 103 37 101 23 107 38 90 66 86 43 89 95 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + AARM + 262 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + BICOMP + 221 + + + ICCARM + 240 224 + + + __cstat + 198 + + + + + BICOMP + 21 23 29 26 17 28 25 20 24 22 13 160 244 258 257 27 14 15 32 16 52 72 71 57 81 36 66 158 56 51 59 48 50 46 60 77 47 39 80 58 53 42 34 69 54 33 41 40 37 38 43 166 153 35 246 45 70 61 75 111 82 85 64 87 65 63 79 93 62 76 110 99 78 67 68 73 74 55 112 109 113 104 106 97 96 92 88 84 108 105 91 83 100 114 98 103 101 107 90 86 89 95 134 150 147 162 141 161 94 + + + ICCARM + 94 35 257 244 134 160 153 158 166 150 246 147 161 141 258 162 27 45 56 70 26 61 51 75 14 111 59 82 25 85 48 64 15 87 50 65 21 63 46 79 32 93 60 62 20 76 77 110 16 99 47 78 17 67 39 68 52 73 80 74 24 55 58 112 72 109 53 113 29 104 42 106 71 97 34 96 22 92 69 88 57 84 54 108 28 105 33 91 81 83 41 100 13 114 40 98 36 103 37 101 23 107 38 90 66 86 43 89 95 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + BICOMP + 176 + + + ICCARM + 135 243 + + + __cstat + 222 + + + + + BICOMP + 134 244 160 142 141 44 143 166 150 286 233 153 158 264 + + + ICCARM + 264 233 244 134 160 153 158 166 150 143 142 141 44 286 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + BICOMP + 189 + + + ICCARM + 167 260 + + + __cstat + 199 + + + + + BICOMP + 153 134 233 244 141 158 264 44 143 142 160 166 150 + + + ICCARM + 264 233 244 134 160 153 158 166 150 143 142 141 44 + + + + + $PROJ_DIR$\Application\runWolfcryptTests.c + + + BICOMP + 229 + + + ICCARM + 144 230 + + + __cstat + 180 + + + + + BICOMP + 244 160 214 233 142 158 9 141 143 166 153 134 264 44 150 + + + ICCARM + 264 233 244 134 160 153 158 166 150 143 142 141 44 9 214 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + BICOMP + 194 + + + ICCARM + 149 248 + + + __cstat + 225 + + + + + BICOMP + 41 59 80 60 34 43 56 50 47 53 54 37 257 51 48 46 77 39 58 42 69 33 40 38 244 166 153 27 26 14 25 15 21 32 20 16 17 52 24 72 29 71 22 57 28 81 13 36 23 66 160 158 258 94 35 246 45 70 61 75 111 82 85 64 87 65 63 79 93 62 76 110 99 78 67 68 73 74 55 112 109 113 104 106 97 96 92 88 84 108 105 91 83 100 114 98 103 101 107 90 86 89 95 134 150 147 162 141 161 9 + + + ICCARM + 9 94 35 257 244 134 160 153 158 166 150 246 147 161 141 258 162 27 45 56 70 26 61 51 75 14 111 59 82 25 85 48 64 15 87 50 65 21 63 46 79 32 93 60 62 20 76 77 110 16 99 47 78 17 67 39 68 52 73 80 74 24 55 58 112 72 109 53 113 29 104 42 106 71 97 34 96 22 92 69 88 57 84 54 108 28 105 33 91 81 83 41 100 13 114 40 98 36 103 37 101 23 107 38 90 66 86 43 89 95 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + BICOMP + 195 + + + ICCARM + 216 241 + + + __cstat + 239 + + + + + BICOMP + 115 233 134 150 244 282 141 44 283 264 143 142 160 166 153 158 284 + + + ICCARM + 264 233 244 134 160 153 158 166 150 143 142 141 44 282 284 283 115 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + BICOMP + 175 + + + ICCARM + 190 231 + + + __cstat + 204 + + + + + BICOMP + 111 83 150 134 244 73 93 97 86 162 141 45 87 99 109 84 103 61 85 63 76 67 55 104 92 105 114 107 94 44 283 246 70 75 82 64 65 79 62 110 78 68 74 112 113 106 96 88 108 91 100 98 101 90 89 95 147 161 282 286 233 143 142 160 166 153 158 284 35 257 27 56 26 51 14 59 25 48 15 50 21 46 32 60 20 77 16 47 17 39 52 80 24 58 72 53 29 42 71 34 22 69 57 54 28 33 81 41 13 40 36 37 23 38 66 43 258 264 + + + ICCARM + 264 233 244 134 160 153 158 166 150 143 142 141 44 282 284 283 94 35 257 246 147 161 258 162 27 45 56 70 26 61 51 75 14 111 59 82 25 85 48 64 15 87 50 65 21 63 46 79 32 93 60 62 20 76 77 110 16 99 47 78 17 67 39 68 52 73 80 74 24 55 58 112 72 109 53 113 29 104 42 106 71 97 34 96 22 92 69 88 57 84 54 108 28 105 33 91 81 83 41 100 13 114 40 98 36 103 37 101 23 107 38 90 66 86 43 89 95 286 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + BICOMP + 203 + + + ICCARM + 137 247 + + + __cstat + 228 + + + + + BICOMP + 141 134 150 244 49 44 279 282 233 143 142 160 166 153 158 283 264 284 + + + ICCARM + 264 233 244 134 160 153 158 166 150 143 142 141 44 282 284 283 49 279 + + + + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\test\test.c + + + BICOMP + 173 + + + ICCARM + 2 152 + + + __cstat + 255 + + + + + BICOMP + 154 7 169 163 267 250 238 166 153 244 140 134 274 5 277 266 268 281 280 273 269 253 276 3 0 254 160 158 164 138 145 275 272 143 249 271 263 6 242 1 8 11 4 278 12 10 214 18 237 136 270 252 233 156 150 142 148 139 265 251 155 31 + + + ICCARM + 270 237 136 249 238 266 252 169 244 134 160 153 158 166 150 143 233 142 156 148 140 163 164 139 138 254 265 251 145 268 273 280 272 274 281 271 267 269 263 275 5 6 253 242 7 1 276 8 277 11 3 4 250 278 0 12 10 154 155 214 18 31 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + BICOMP + 200 + + + ICCARM + 217 236 + + + __cstat + 245 + + + + + BICOMP + 153 134 244 166 150 233 264 160 158 141 44 143 142 + + + ICCARM + 134 244 160 153 158 166 150 264 233 143 142 141 44 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + BICOMP + 191 + + + ICCARM + 235 213 + + + __cstat + 223 + + + + + BICOMP + 150 134 244 279 141 233 143 142 49 160 166 153 158 + + + ICCARM + 49 279 141 244 233 134 160 153 158 166 150 143 142 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + BICOMP + 215 + + + ICCARM + 157 227 + + + __cstat + 234 + + + + + BICOMP + 153 134 244 166 150 233 264 160 158 141 44 143 142 + + + ICCARM + 134 244 160 153 158 166 150 264 233 143 142 141 44 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + BICOMP + 201 + + + ICCARM + 146 256 + + + __cstat + 210 + + + + + BICOMP + 102 244 218 143 134 233 284 158 49 169 282 178 283 279 141 142 153 30 160 166 150 + + + ICCARM + 30 282 284 283 102 178 279 141 244 49 233 134 160 153 158 166 150 143 142 169 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + BICOMP + 168 + + + ICCARM + 133 261 + + + __cstat + 206 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + BICOMP + 202 + + + ICCARM + 165 232 + + + __cstat + 209 + + + + + BICOMP + 244 166 218 279 141 134 150 169 143 160 49 153 158 + + + ICCARM + 49 279 141 244 169 134 160 153 158 166 150 143 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + BICOMP + 215 + + + __cstat + 234 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + BICOMP + 194 + + + __cstat + 225 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + BICOMP + 175 + + + __cstat + 204 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + BICOMP + 226 + + + __cstat + 212 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + BICOMP + 203 + + + __cstat + 228 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + BICOMP + 176 + + + __cstat + 222 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + BICOMP + 195 + + + __cstat + 239 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + BICOMP + 168 + + + __cstat + 206 + + + + + $PROJ_DIR$\..\..\..\..\wolfcrypt\test\test.c + + + BICOMP + 173 + + + ICCARM + 152 + + + __cstat + 255 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + BICOMP + 202 + + + __cstat + 209 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + BICOMP + 191 + + + __cstat + 223 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + BICOMP + 201 + + + __cstat + 210 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + BICOMP + 200 + + + __cstat + 245 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + BICOMP + 189 + + + __cstat + 199 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + BICOMP + 221 + + + __cstat + 198 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + AARM + 262 159 + + + + + $PROJ_DIR$\Debug\Exe\wolfcrypt_test.out + + + ILINK + 172 + + + + + ILINK + 19 248 262 243 260 231 230 261 213 232 256 241 247 224 220 152 236 227 205 285 192 208 259 207 + + + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\wolfcrypt\test\test.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + ICCARM + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + ICCARM + + + + Release + + + [MULTI_TOOL] + ILINK + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewd b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewd new file mode 100644 index 000000000..25c4c6aff --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewd @@ -0,0 +1,3163 @@ + + + + 2 + + Debug + + ARM + + 1 + + C-SPY + 2 + + 28 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 1 + 1 + 1 + + + + + + + + ANGEL_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + + CMSISDAP_ID + 2 + + 4 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDBSERVER_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + IARROM_ID + 2 + + 1 + 1 + 1 + + + + + + + + + IJET_ID + 2 + + 8 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JLINK_ID + 2 + + 16 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LMIFTDI_ID + 2 + + 2 + 1 + 1 + + + + + + + + + + MACRAIGOR_ID + 2 + + 3 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + PEMICRO_ID + 2 + + 3 + 1 + 1 + + + + + + + + RDI_ID + 2 + + 2 + 1 + 1 + + + + + + + + + + + + + + + + STLINK_ID + 2 + + 3 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 1 + + + + + + + + TIFET_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + + + XDS100_ID + 2 + + 5 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin + 1 + + + $TOOLKIT_DIR$\plugins\rtos\MQX\MQXRtosPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin + 0 + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin + 1 + + + $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin + 0 + + + $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin + 0 + + + + + Release + + ARM + + 0 + + C-SPY + 2 + + 28 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 1 + 1 + 0 + + + + + + + + ANGEL_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + + CMSISDAP_ID + 2 + + 4 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDBSERVER_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + IARROM_ID + 2 + + 1 + 1 + 0 + + + + + + + + + IJET_ID + 2 + + 8 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JLINK_ID + 2 + + 16 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LMIFTDI_ID + 2 + + 2 + 1 + 0 + + + + + + + + + + MACRAIGOR_ID + 2 + + 3 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + PEMICRO_ID + 2 + + 3 + 1 + 0 + + + + + + + + RDI_ID + 2 + + 2 + 1 + 0 + + + + + + + + + + + + + + + + STLINK_ID + 2 + + 3 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 0 + + + + + + + + TIFET_ID + 2 + + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + + XDS100_ID + 2 + + 5 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\MQX\MQXRtosPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin + 0 + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin + 1 + + + $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin + 0 + + + $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin + 0 + + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewp b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewp new file mode 100644 index 000000000..92300a3f8 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewp @@ -0,0 +1,1995 @@ + + + + 2 + + Debug + + ARM + + 1 + + General + 3 + + 24 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 31 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 9 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OBJCOPY + 0 + + 1 + 1 + 1 + + + + + + + + + CUSTOM + 3 + + + + 0 + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + ILINK + 0 + + 17 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IARCHIVE + 0 + + 0 + 1 + 1 + + + + + + + BILINK + 0 + + + + + Release + + ARM + + 0 + + General + 3 + + 24 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 31 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 9 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OBJCOPY + 0 + + 1 + 1 + 0 + + + + + + + + + CUSTOM + 3 + + + + 0 + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + ILINK + 0 + + 17 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IARCHIVE + 0 + + 0 + 1 + 0 + + + + + + + BILINK + 0 + + + + + Application + + $PROJ_DIR$\Application\runWolfcryptTests.c + + + + Device_Support + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + + Setup + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + + wolfcrypt_test + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\test\test.c + + + + + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewt new file mode 100644 index 000000000..1c009036c --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/wolfcrypt_test.ewt @@ -0,0 +1,2382 @@ + + + + 2 + + Debug + + ARM + + 1 + + C-STAT + 259 + + 259 + + 0 + + 1 + 600 + 0 + 2 + 0 + 1 + 100 + + + 1.3.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RuntimeChecking + 0 + + 2 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + Release + + ARM + + 0 + + C-STAT + 259 + + 259 + + 0 + + 1 + 600 + 0 + 2 + 0 + 1 + 100 + + + 1.3.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RuntimeChecking + 0 + + 2 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + Application + + $PROJ_DIR$\Application\runWolfcryptTests.c + + + + Device_Support + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + + Setup + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + + wolfcrypt_test + + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\test\test.c + + + + + diff --git a/wolfcrypt/benchmark/benchmark.c b/wolfcrypt/benchmark/benchmark.c index 76cd20f71..b78f5887e 100644 --- a/wolfcrypt/benchmark/benchmark.c +++ b/wolfcrypt/benchmark/benchmark.c @@ -2108,6 +2108,22 @@ void bench_ed25519KeySign(void) return (double)tv.SECONDS + (double)tv.MILLISECONDS / 1000; } +#elif defined(WOLFSSL_EMBOS) + + #include "RTOS.h" + + double current_time(int reset) + { + double time_now; + double current_s = OS_GetTime() / 1000.0; + double current_us = OS_GetTime_us() / 1000000.0; + time_now = (double)( current_s + current_us); + + (void) reset; + + return time_now; + } + #else #include diff --git a/wolfcrypt/src/random.c b/wolfcrypt/src/random.c index 235dce133..910c06703 100644 --- a/wolfcrypt/src/random.c +++ b/wolfcrypt/src/random.c @@ -145,7 +145,8 @@ int wc_FreeRng(WC_RNG* rng) #else #if !defined(NO_DEV_RANDOM) && !defined(CUSTOM_RAND_GENERATE) && \ !defined(WOLFSSL_GENSEED_FORTEST) && !defined(WOLFSSL_MDK_ARM) && \ - !defined(WOLFSSL_IAR_ARM) && !defined(WOLFSSL_ROWLEY_ARM) + !defined(WOLFSSL_IAR_ARM) && !defined(WOLFSSL_ROWLEY_ARM) && \ + !defined(WOLFSSL_EMBOS) #include #ifndef EBSNET #include @@ -1359,7 +1360,8 @@ int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz) return 0; } -#elif defined(WOLFSSL_LPC43xx) || defined(WOLFSSL_STM32F2xx) || defined(MBED) +#elif defined(WOLFSSL_LPC43xx) || defined(WOLFSSL_STM32F2xx) || defined(MBED) \ + || defined(WOLFSSL_EMBOS) #warning "write a real random seed!!!!, just for testing now" diff --git a/wolfssl/ssl.h b/wolfssl/ssl.h index 34fd8536a..dfeece18a 100644 --- a/wolfssl/ssl.h +++ b/wolfssl/ssl.h @@ -969,7 +969,8 @@ WOLFSSL_API int wolfSSL_make_eap_keys(WOLFSSL*, void* key, unsigned int len, #include #include #elif !defined(WOLFSSL_MDK_ARM) && !defined(WOLFSSL_IAR_ARM) && \ - !defined(WOLFSSL_PICOTCP) && !defined(WOLFSSL_ROWLEY_ARM) + !defined(WOLFSSL_PICOTCP) && !defined(WOLFSSL_ROWLEY_ARM) && \ + !defined(WOLFSSL_EMBOS) #include #endif /* allow writev style writing */ diff --git a/wolfssl/wolfcrypt/settings.h b/wolfssl/wolfcrypt/settings.h index 7a66fb754..3d95efcb4 100644 --- a/wolfssl/wolfcrypt/settings.h +++ b/wolfssl/wolfcrypt/settings.h @@ -142,6 +142,9 @@ /* Uncomment next line if building for uTasker */ /* #define WOLFSSL_UTASKER */ +/* Uncomment next line if building for embOS */ +/* #define WOLFSSL_EMBOS */ + #include #ifdef WOLFSSL_USER_SETTINGS @@ -409,6 +412,14 @@ #endif #endif +#ifdef WOLFSSL_EMBOS + #define USE_FAST_MATH + #define NO_FILESYSTEM /* Not ported at this time */ + #define USE_CERT_BUFFERS_2048 /* use when NO_FILESYSTEM */ + #define NO_MAIN_DRIVER + #define NO_RC4 + #define SINGLE_THREADED /* Not ported at this time */ +#endif /* Micrium will use Visual Studio for compilation but not the Win32 API */ #if defined(_WIN32) && !defined(MICRIUM) && !defined(FREERTOS) && \ From 6e26cac686c625336b2cad574a8e02a5a42b75ce Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Wed, 4 May 2016 13:03:05 -0700 Subject: [PATCH 2/5] Reworking directories and simplify README --- IDE/IAR-EWARM/embOS/.gitignore | 1 + IDE/IAR-EWARM/embOS/README | 11 +- IDE/IAR-EWARM/embOS/SAMV71_XULT/README_SAMV71 | 9 + .../Application/runBenchmarks.c | 24 +- .../README_wolfcrypt_benchmark} | 54 +- .../wolfcrypt_benchmark.Debug.driver.xcl | 2 +- .../wolfcrypt_benchmark.Debug.general.xcl | 4 +- .../settings/wolfcrypt_benchmark.dbgdt | 4 +- .../settings/wolfcrypt_benchmark.dni | 2 +- .../wolfcrypt_benchmark.dep | 1243 +++++------ .../wolfcrypt_benchmark.ewd | 4 +- .../wolfcrypt_benchmark.ewp | 38 +- .../wolfcrypt_benchmark.ewt | 30 +- .../README_wolfcrypt_lib | 44 + .../settings/wolfcrypt_lib.Debug.general.xcl | 2 +- .../wolfcrypt_lib.dep | 1387 ++++++------ .../Application/runWolfcryptTests.c | 26 +- .../README_wolfcrypt_test | 69 + .../settings/wolfcrypt_test.Debug.driver.xcl | 2 +- .../settings/wolfcrypt_test.Debug.general.xcl | 4 +- .../settings/wolfcrypt_test.dbgdt | 14 +- .../settings/wolfcrypt_test.dni | 2 +- .../wolfcrypt_test.dep | 1853 +++++++++++------ .../wolfcrypt_test.ewd | 4 +- .../wolfcrypt_test.ewp | 38 +- .../wolfcrypt_test.ewt | 30 +- .../{ => custom_port}/README_custom_port | 145 +- .../samv71q21_wolfssl.icf | 57 + .../custom_port_user_settings/user_settings.h | 67 + .../Application/runBenchmarks.c | 29 + .../Application/runWolfcryptTests.c | 30 + .../README_extract_trial_here | 1 + wolfcrypt/benchmark/benchmark.c | 2 +- 33 files changed, 3026 insertions(+), 2206 deletions(-) create mode 100644 IDE/IAR-EWARM/embOS/.gitignore create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/README_SAMV71 rename IDE/IAR-EWARM/embOS/{README_SAMV71 => SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/README_wolfcrypt_benchmark} (65%) create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_lib_SAMV71_XULT/README_wolfcrypt_lib create mode 100644 IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_test_SAMV71_XULT/README_wolfcrypt_test rename IDE/IAR-EWARM/embOS/{ => custom_port}/README_custom_port (55%) create mode 100644 IDE/IAR-EWARM/embOS/custom_port/custom_port_Linker_Script/samv71q21_wolfssl.icf create mode 100644 IDE/IAR-EWARM/embOS/custom_port/custom_port_user_settings/user_settings.h create mode 100644 IDE/IAR-EWARM/embOS/custom_port/wolfcrypt_benchmark_custom_port/Application/runBenchmarks.c create mode 100644 IDE/IAR-EWARM/embOS/custom_port/wolfcrypt_test_custom_port/Application/runWolfcryptTests.c create mode 100644 IDE/IAR-EWARM/embOS/extract_trial_here/README_extract_trial_here diff --git a/IDE/IAR-EWARM/embOS/.gitignore b/IDE/IAR-EWARM/embOS/.gitignore new file mode 100644 index 000000000..64acf8a62 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/.gitignore @@ -0,0 +1 @@ +*.bat \ No newline at end of file diff --git a/IDE/IAR-EWARM/embOS/README b/IDE/IAR-EWARM/embOS/README index 7c53221b6..4fac7ca47 100644 --- a/IDE/IAR-EWARM/embOS/README +++ b/IDE/IAR-EWARM/embOS/README @@ -1,18 +1,23 @@ -#-----------------------------------------------------------------------------# +#-----------------------------------------------------------------------------# wolfSSL + embOS + IAR Workbench #-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------# For building the existing examples on a SAMV71_Explained_Ultra with Cortex M7 #-----------------------------------------------------------------------------# -see README_SAMV71 + + See SAMV71_XULT\\README_ + + I.E. SAMV71_XULT\embOS_wolfcrypt_lib_SAMV71_XULT\README_wolfcrypt_lib #-----------------------------------------------------------------------------# For building wolfssl on a new CPU that is supported by embOS in IAR Workbench #-----------------------------------------------------------------------------# -see README_custom_port + See custom_port\README_custom_port +#-----------------------------------------------------------------------------# +#-----------------------------------------------------------------------------# Thank you for choosing wolfSSL if you ever have any questions please contact us! diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/README_SAMV71 b/IDE/IAR-EWARM/embOS/SAMV71_XULT/README_SAMV71 new file mode 100644 index 000000000..05532e095 --- /dev/null +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/README_SAMV71 @@ -0,0 +1,9 @@ +Each example project here has it's own README please follow them in detail. + +Thank you for using this guide and we hope this is helpful to you. If you have +any suggestions / feedback for us please contact us: +support@wolfssl.com +info@wolfssl.com + +Copyright © 2016 wolfSSL Inc. All rights reserved. + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c index 4bb00b69f..3f36707e9 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/Application/runBenchmarks.c @@ -1,31 +1,29 @@ #include "RTOS.h" #include "BSP.h" +#include #include -static OS_STACKPTR int WLFSTACK[20000]; /* Stack Size */ -static OS_TASK WLFTASK; /* Task-control-blocks */ +static OS_STACKPTR int WLFSTACK[20000]; /* Stack Size for Task */ +static OS_TASK WLFTASK; /* Task */ static void wolfTask(void) { + printf("Begin Benchmark Tests\n"); benchmark_test(NULL); + printf("Benchmark Tests Complete\n"); while (1) { BSP_ToggleLED(1); OS_Delay(200); } } -/********************************************************************* -* -* main() -*/ + int main(void) { - OS_IncDI(); /* Initially disable interrupts */ - OS_InitKern(); /* Initialize OS */ - OS_InitHW(); /* Initialize Hardware for OS */ - BSP_Init(); /* Initialize LED ports */ + OS_IncDI(); /* Disable interrupts */ + OS_InitKern(); /* Initialize OS */ + OS_InitHW(); /* Initialize Hardware */ + BSP_Init(); /* Initialize LED ports */ /* You need to create at least one task before calling OS_Start() */ OS_CREATETASK(&WLFTASK, "Tests task", wolfTask, 100, WLFSTACK); - OS_Start(); /* Start multitasking */ + OS_Start(); /* Start the OS */ return 0; } - -/****** End Of File *************************************************/ diff --git a/IDE/IAR-EWARM/embOS/README_SAMV71 b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/README_wolfcrypt_benchmark similarity index 65% rename from IDE/IAR-EWARM/embOS/README_SAMV71 rename to IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/README_wolfcrypt_benchmark index 7dce91230..fe85473d0 100644 --- a/IDE/IAR-EWARM/embOS/README_SAMV71 +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/README_wolfcrypt_benchmark @@ -3,6 +3,7 @@ Steps taken to evaluate wolfSSL with the following: Required Software for this guide: IAR Embedded Workbench IDE - ARM v7.60.1 (or similar version) embOS v4.16 (for Cortex-M and IAR compiler) +wolfssl (latest version) Required items (Hardware) for this guide: Atmel SAM V71 Xplained Ultra (Or equivelent Cortex-M Evaluation Board) @@ -18,57 +19,23 @@ Micro usb cable For this guide "**SAMV71_DIR" will signify the directory: C:\\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\ - -#----------------------------------------------------------------------------# -# Create wolfcrypt_lib.a -#----------------------------------------------------------------------------# - -1. Open IAR Workbench -> Project -> Add Existing Project - a. Browse to **SAMV71_DIR\embOS_wolfcrypt_lib - c. Choose wolfcrypt_lib.ewp and click "Open" - -2. Go to Project -> Rebuild All - -3. Verify the library built, you should no have: - **SAMV71_DIR\embOS_wolfcrypt_lib\Debug\Bin\wolfcrypt_lib.a - - #----------------------------------------------------------------------------# # Setup file system to evaluate wolfssl in embOS project: +# (If you have not already done so) #----------------------------------------------------------------------------# -1. On your PC create the empty directory C:\embos-trial\ +1. In wolfssl you will notice the directory: + wolfssl\IDE\IAR-EWARM\embOS\extract_trial_here 2. go to embOS website and download a trial for your platform https://www.segger.com/downloads/embos -> embOS trial for Cortex-M and IAR compiler -3. Extract (unzip) the download to C:\embos-trial +3. Extract (unzip) the download to + C:\\wolfssl\IDE\IAR-EWARM\embOS\extract_trial_here\ (Note: you do not need to do anything further in this directory, the wolfSSL evaluation projects will simply link against it) - -#----------------------------------------------------------------------------# -# Evaluate wolfcrypt_tests in embOS project: -#----------------------------------------------------------------------------# - -1. In IAR Workbench go to Project -> Add Existing Project - a. Browse to **SAMV71_DIR\embOS_wolfcrypt_test_SAMV71_XULT\ - b. Choose wolfcrypt_test.ewp and click "Open" - -2. Go to Project -> Rebuild All - -3. Connect your SAMV71 Xplained Ultra to your PC with micro USB in the "Debug" - port for power and the J-Link hooked up to SWD pins and your PC - -4. Go to Project -> Download and Debug - -5. Once the "Debug" environment has loaded go to: View -> Terminal I/O - (This is where the printf's will be directed to) - -6. Hit "Go" (Debug option with 3 left arrows "→→→") - -7. You should observe the tests run and pass. - + #----------------------------------------------------------------------------# # Evaluate wolfcrypt_benchmarks in embOS project: #----------------------------------------------------------------------------# @@ -87,13 +54,12 @@ C:\\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\ 5. Once the "Debug" environment has loaded go to: View -> Terminal I/O (This is where the printf's will be directed to) -6. Hit "Go" (Debug option with 3 left arrows "→→→") +6. Hit "Go" (Debug option with 3 right arrows "→→→") 7. You should observe the benchmark times for the configured algorithms. - - - +#----------------------------------------------------------------------------# +#----------------------------------------------------------------------------# Thank you for using this guide and we hope this was helpful to you. If you have any suggestions / feedback for us please contact us: diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl index 885e2a33f..c88ed70d1 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.driver.xcl @@ -10,7 +10,7 @@ "-p" -"C:\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\ATSAMV71Q21.svd" +"C:\Users\boz_windows\Desktop\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\ATSAMV71Q21.svd" "--semihosting" diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl index b8ec42cb2..07cf4682d 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.Debug.general.xcl @@ -2,11 +2,11 @@ "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armjlink2.dll" -"C:\Users\boz_windows\Desktop\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Debug\Exe\wolfcrypt_benchmark.out" +"C:\Users\boz_windows\Desktop\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Debug\Exe\wolfcrypt_benchmark.out" --plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.4\arm\bin\armbat.dll" ---macro "C:\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\samv7-ek-flash.mac" +--macro "C:\Users\boz_windows\Desktop\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\samv7-ek-flash.mac" diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt index edfa8fc39..3817a8646 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dbgdt @@ -101,14 +101,14 @@ - TextEditor$WS_DIR$\Application\OS_StartLEDBlink.c000004123662366TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\benchmark\benchmark.c00000211000TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfssl\ssl.h000009334117041170TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c000001500TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c000002822082208TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\fp_sqr_comba_6.i000001910941094TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\tfm.c000004781119511195TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c000009848634863TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c000003281156911569TextEditor$WS_DIR$\..\..\..\..\..\new-embOS-cortex-m\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Application\OS_StartLEDBlink.c000004928702870TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000012422422TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c0000012412412TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c000002011114611146TextEditor$WS_DIR$\..\..\..\..\..\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c000006412412TextEditor$WS_DIR$\..\..\..\..\..\embos-wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000012422422TextEditor$WS_DIR$\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c000003281156911569150100000010000001 + TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\src\tfm.c0000017113907839078TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c0000012423423TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\SAMV71_XULT\embOS_wolfcrypt_benchmark_SAMV71_XULT\Application\runBenchmarks.c0000011432432TextEditor$WS_DIR$\..\..\..\..\..\wolfssl\IDE\IAR-EWARM\embOS\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c00000328115691156930100000010000001 - iaridepm.enu1debuggergui.enu1armjlink2.enu1-2-2304198-2-2200200154560336134154560514286-2-2304417-2-2200200154560336134323802514286-24153041098415-2200200154560336134527821514286-2-21981296-2-212982001003091336134154560336134 + iaridepm.enu1debuggergui.enu1armjlink2.enu1-2-2304198-2-2200200154560336134154560514286-2-2304417-2-2200200154560336134323802514286-24153041098415-2200200154560336134527821514286-2-21981296-2-212982001003091336134154560336134 diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni index b756ea17d..7a5211987 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/settings/wolfcrypt_benchmark.dni @@ -9,7 +9,7 @@ TriggerName=main LimitSize=0 ByteLimit=50 [DebugChecksum] -Checksum=822032712 +Checksum=-866273587 [CodeCoverage] Enabled=_ 0 [Exceptions] diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep index 5646a0b9f..ca0bf37d3 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.dep @@ -2,291 +2,381 @@ 2 - 3271176394 + 2974958069 Debug - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c - $PROJ_DIR$\Application\runBenchmarks.c $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\smc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piod.h - $TOOLKIT_DIR$\CMSIS\Include\core_cmFunc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtt.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\efc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs1.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pmc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\dacc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mlb.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\twihs.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\aes.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pmc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\isi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\tc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rswdt.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\chipid.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\spi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\qspi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\isi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gpbr.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\icm.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\smc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\supc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\uart.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\efc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mcan.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc3.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\ssc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usart.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\xdmac.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rswdt.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtt.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\matrix.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart2.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm1.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\acc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pio.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\utmi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart3.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rstc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\pio\samv71q21.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart4.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gmac.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\hsmci.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\sdramc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs2.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\icm.h - $TOOLKIT_DIR$\CMSIS\Include\core_cm7.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\utmi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\xdmac.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usbhs.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc2.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gpbr.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\matrix.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\trng.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec1.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\ssc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rstc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pwm.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart2.h - $TOOLKIT_DIR$\CMSIS\Include\core_cmInstr.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\wdt.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan1.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piob.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi0.h - $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.__cstat.et - $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\supc.h - $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.__cstat.et - $PROJ_DIR$\Debug\Obj\runBenchmarks.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioe.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\hsmci.h - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioa.h - $PROJ_DIR$\Debug\Obj\xmtx.__cstat.et - $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart1.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\trng.h - $PROJ_DIR$\Debug\Obj\startup_sam.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\dacc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usbhs.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\sdramc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mlb.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi1.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\qspi.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\wdt.h - $PROJ_DIR$\Debug\Obj\xmtx2.__cstat.et - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan0.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gmac.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart1.h - $PROJ_DIR$\Debug\Obj\BSP.__cstat.et - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc1.h - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.o - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.pbi - $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.pbi - $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.pbi - $PROJ_DIR$\Debug\Obj\SEGGER_RTT.__cstat.et - $PROJ_DIR$\Debug\Obj\SEGGER_RTT.pbi - $PROJ_DIR$\Debug\Obj\OS_Error.__cstat.et - $PROJ_DIR$\Debug\Obj\xmtx.o - $PROJ_DIR$\Debug\Obj\HardFaultHandler.o - $PROJ_DIR$\Debug\Obj\xmtx.pbi - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.pbi - $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.o - $PROJ_DIR$\Debug\Obj\xmtx2.o - $PROJ_DIR$\Debug\Obj\system_sam.__cstat.et - $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.pbi - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.pbi - $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.pbi - $PROJ_DIR$\Debug\Obj\OS_Error.o - $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.o - $PROJ_DIR$\Debug\Obj\BSP.pbi - $PROJ_DIR$\Debug\Obj\BSP.o - $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.o - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\acc.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\afec.h - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.__cstat.et - $PROJ_DIR$\Debug\Obj\xmtx2.pbi - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.o - $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.o - $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.o - $PROJ_DIR$\Debug\Obj\OS_Error.pbi - $PROJ_DIR$\Debug\Obj\benchmark.__cstat.et - $PROJ_DIR$\Debug\Obj\SEGGER_RTT.o - $TOOLKIT_DIR$\CMSIS\Include\core_cmSimd.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $TOOLKIT_DIR$\inc\c\string.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + $PROJ_DIR$\Application\runBenchmarks.c $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_Conf.h - $TOOLKIT_DIR$\inc\c\yvals.h - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71q21.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\aes.h + $PROJ_DIR$\Debug\Obj\xmtx2.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.pbi + $PROJ_DIR$\Debug\Obj\BSP.o + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.pbi + $TOOLKIT_DIR$\CMSIS\Include\core_cmSimd.h + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.o + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.o $TOOLKIT_DIR$\inc\c\DLib_Threads.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Lib\os7m_tlv_dp.a - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\chipid.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $TOOLKIT_DIR$\lib\rt7M_tl.a - $TOOLKIT_DIR$\lib\dl7M_tln.a - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.h - $PROJ_DIR$\Debug\List\wolfcrypt_benchmark.map - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\Global.h - $TOOLKIT_DIR$\lib\shb_l.a - $TOOLKIT_DIR$\lib\m7M_tlv.a - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER.h - $TOOLKIT_DIR$\inc\c\xencoding_limits.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_samv71.h - $PROJ_DIR$\..\embOS_SAMV71_XULT_Linker_Script\samv71q21_wolfssl.icf - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $TOOLKIT_DIR$\inc\c\cmsis_iar.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\arc4.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.o + $PROJ_DIR$\Debug\Obj\OS_Error.o + $PROJ_DIR$\Debug\Obj\system_sam.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.o + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.pbi + $TOOLKIT_DIR$\inc\c\xmtx.h + $PROJ_DIR$\Debug\Obj\OS_Error.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.o + $TOOLKIT_DIR$\inc\c\xtls.h + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.o + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\mem_track.h + $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\Debug\Obj\BSP.pbi + $PROJ_DIR$\Debug\Obj\benchmark.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\Debug\Obj\benchmark.o + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h + $PROJ_DIR$\..\embOS_wolfcrypt_lib_SAMV71_XULT\Debug\Bin\wolfcrypt_lib.a + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h + $PROJ_DIR$\Debug\Obj\startup_sam.pbi + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\poly1305.h $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ecc.h + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h + $TOOLKIT_DIR$\inc\c\ystdio.h $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hc128.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h - $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.h - $PROJ_DIR$\..\embOS_wolfcrypt_lib_SAMV71_XULT\Debug\Bin\wolfcrypt_lib.a - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\BSP.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\OS_Config.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\RTOS.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h $TOOLKIT_DIR$\inc\c\xlocale_c.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h $TOOLKIT_DIR$\inc\c\limits.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h - $TOOLKIT_DIR$\inc\c\xlocale.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\mem_track.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\camellia.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\aes.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h - $TOOLKIT_DIR$\inc\c\xmtx.h - $TOOLKIT_DIR$\inc\c\xtls.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.h - $PROJ_DIR$\Debug\Exe\wolfcrypt_benchmark.out + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h + $TOOLKIT_DIR$\inc\c\xlocale.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\camellia.h $PROJ_DIR$\Debug\Obj\wolfcrypt_benchmark.pbd - $PROJ_DIR$\Debug\Obj\benchmark.pbi - $TOOLKIT_DIR$\inc\c\ctype.h - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h - $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h $PROJ_DIR$\Debug\Obj\runBenchmarks.pbi - $PROJ_DIR$\Debug\Obj\runBenchmarks.o - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_ConfDefaults.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h + $PROJ_DIR$\Debug\Obj\system_sam.pbi + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\certs_test.h + $TOOLKIT_DIR$\CMSIS\Include\core_cm7.h $TOOLKIT_DIR$\inc\c\xlocaleuse.h $TOOLKIT_DIR$\inc\c\wchar.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hash.h $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ripemd.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Int.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\certs_test.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h - $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Conf.h - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\JLINKMEM.h - $TOOLKIT_DIR$\inc\c\ystdio.h - $PROJ_DIR$\Debug\Obj\startup_sam.pbi + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h $PROJ_DIR$\Debug\Obj\system_sam.o + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\Debug\Obj\runBenchmarks.o $PROJ_DIR$\Debug\Obj\startup_sam.o - $PROJ_DIR$\Debug\Obj\benchmark.o - $PROJ_DIR$\Debug\Obj\system_sam.pbi - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart2.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\efc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usart.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pmc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gpbr.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_samv71.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mcan.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pwm.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rstc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\smc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pmc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\isi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rswdt.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\efc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pio.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart3.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc2.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gmac.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\acc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piod.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\utmi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\twihs.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtc.h + $TOOLKIT_DIR$\CMSIS\Include\core_cmFunc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\aes.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\icm.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\aes.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtt.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gmac.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mlb.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\icm.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\xdmac.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc3.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\acc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\sdramc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\ssc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\matrix.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piob.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71q21.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\chipid.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rstc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\afec.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\dacc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\qspi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\hsmci.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mlb.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\ssc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\dacc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\isi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gpbr.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\pio\samv71q21.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioa.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart2.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart4.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\uart.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usbhs.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\hsmci.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\wdt.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\trng.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\spi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs2.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\supc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\qspi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\sdramc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioe.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usbhs.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\supc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\utmi.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\wdt.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\trng.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec0.h + $PROJ_DIR$\..\..\extract_trial_here\Start\Lib\os7m_tlv_dp.a + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\xdmac.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\tc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\chipid.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtt.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs1.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rswdt.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\smc.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\matrix.h + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.__cstat.et + $PROJ_DIR$\Debug\Obj\xmtx.o + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.pbi + $PROJ_DIR$\Debug\Obj\xmtx.pbi + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.h + $PROJ_DIR$\Debug\Obj\BSP.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.pbi + $PROJ_DIR$\Debug\Obj\startup_sam.__cstat.et + $PROJ_DIR$\Debug\Obj\xmtx2.o + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Int.h + $TOOLKIT_DIR$\CMSIS\Include\core_cmInstr.h + $PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.__cstat.et + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.__cstat.et + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_ConfDefaults.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.h + $PROJ_DIR$\Debug\Obj\HardFaultHandler.o + $PROJ_DIR$\Debug\Obj\JLINKMEM_Process.o + $PROJ_DIR$\Debug\Obj\xmtx2.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.o + $PROJ_DIR$\Debug\Obj\xmtx.__cstat.et + $PROJ_DIR$\Debug\Obj\OS_Error.__cstat.et + $PROJ_DIR$\..\..\extract_trial_here\Start\Inc\BSP.h + $PROJ_DIR$\..\..\extract_trial_here\Start\Inc\JLINKMEM.h + $PROJ_DIR$\Debug\Obj\runBenchmarks.__cstat.et + $PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.__cstat.et + $PROJ_DIR$\..\..\extract_trial_here\Start\Inc\RTOS.h + $PROJ_DIR$\..\..\extract_trial_here\Start\Inc\OS_Config.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Conf.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_Conf.h + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.pbi + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\Debug\List\wolfcrypt_benchmark.map + $PROJ_DIR$\Debug\Exe\wolfcrypt_benchmark.out + $TOOLKIT_DIR$\inc\c\stdint.h + $TOOLKIT_DIR$\lib\m7M_tlv.a + $TOOLKIT_DIR$\lib\rt7M_tl.a + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $TOOLKIT_DIR$\inc\c\yvals.h + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.pbi + $TOOLKIT_DIR$\lib\dl7M_tln.a + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\arc4.h + $TOOLKIT_DIR$\inc\c\cmsis_iar.h + $PROJ_DIR$\..\embOS_SAMV71_XULT_Linker_Script\samv71q21_wolfssl.icf + $PROJ_DIR$\Debug\Obj\benchmark.pbi + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.pbi + $PROJ_DIR$\Debug\Obj\SEGGER_RTT.__cstat.et + $PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\Global.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.h + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c [ROOT_NODE] ILINK - 215 170 + 215 214 - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c BICOMP - 245 + 227 ICCARM - 242 + 33 __cstat - 132 + 31 BICOMP - 155 160 88 64 59 66 69 75 159 70 57 43 100 108 107 62 142 36 61 42 85 84 105 109 110 116 91 63 83 161 141 24 65 45 81 56 34 77 73 95 118 68 114 104 115 67 101 106 103 97 94 111 82 163 151 177 162 165 44 38 39 52 25 23 35 50 51 17 47 30 26 48 71 49 79 41 74 22 58 53 86 37 55 29 46 54 78 27 72 40 76 28 33 21 87 18 80 20 32 31 60 171 176 157 179 19 156 180 246 + 41 28 63 42 55 27 221 220 54 62 228 61 232 213 36 10 39 58 32 219 45 51 56 53 34 80 49 52 72 231 47 35 79 6 48 57 50 60 44 224 37 76 43 74 68 207 15 64 67 78 24 70 21 71 73 46 29 208 ICCARM - 246 161 160 155 159 171 157 179 176 163 70 83 180 156 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 + 64 61 79 10 27 220 232 6 219 221 15 213 32 80 48 54 41 63 67 45 78 57 24 21 70 50 71 56 39 224 49 37 228 76 52 43 58 42 72 55 60 34 46 51 73 231 47 53 36 44 74 68 35 28 62 207 29 208 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c + + + BICOMP + 30 + + + ICCARM + 9 + + + __cstat + 186 + + + + + BICOMP + 129 110 101 123 119 100 109 134 105 124 118 130 216 98 115 112 106 138 113 103 127 125 126 121 27 221 6 89 174 88 179 86 177 93 173 85 172 94 176 83 170 96 87 111 178 95 84 104 175 97 232 219 108 147 128 69 120 131 139 102 136 140 90 99 91 92 107 162 155 160 154 149 165 152 151 159 153 133 116 135 141 150 132 117 114 158 156 137 169 161 122 167 157 164 144 148 163 166 168 142 145 146 143 220 15 191 12 29 225 203 + + + ICCARM + 203 147 128 216 27 220 232 6 219 221 15 69 191 225 29 108 12 89 120 109 131 174 139 98 102 88 136 110 140 179 90 115 99 86 91 134 92 177 107 112 162 93 155 123 160 173 154 106 149 85 165 105 152 172 151 138 159 94 153 101 133 176 116 113 135 83 141 124 150 170 132 103 117 96 114 119 158 87 156 127 137 111 169 118 161 178 122 125 167 95 157 129 164 84 144 126 148 104 163 130 166 175 168 121 142 97 145 100 146 143 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S + + + AARM + 197 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c + + + BICOMP + 66 + + + ICCARM + 77 + + + __cstat + 18 + + + + + BICOMP + 27 216 159 102 167 162 117 142 220 69 99 149 135 137 148 143 131 140 92 160 152 133 150 158 161 164 166 146 191 128 120 139 136 90 91 107 155 154 165 151 153 116 141 132 114 156 169 122 157 144 163 168 145 15 12 89 109 174 98 88 110 179 115 86 134 177 112 93 123 173 106 85 105 172 138 94 101 176 113 83 124 170 103 96 119 87 127 111 118 178 125 95 129 84 126 104 130 175 121 97 100 232 221 6 219 108 29 225 147 + + + ICCARM + 147 128 216 27 220 232 6 219 221 15 69 191 225 29 108 12 89 120 109 131 174 139 98 102 88 136 110 140 179 90 115 99 86 91 134 92 177 107 112 162 93 155 123 160 173 154 106 149 85 165 105 152 172 151 138 159 94 153 101 133 176 116 113 135 83 141 124 150 170 132 103 117 96 114 119 158 87 156 127 137 111 169 118 161 178 122 125 167 95 157 129 164 84 144 126 148 104 163 130 166 175 168 121 142 97 145 100 146 143 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c + + + BICOMP + 40 + + + ICCARM + 82 + + + __cstat + 188 + + + + + BICOMP + 177 175 170 174 172 178 179 173 176 87 84 232 27 108 216 89 88 86 93 85 94 83 96 111 95 104 97 219 109 98 110 115 134 112 123 106 105 138 101 113 124 103 119 127 118 125 129 126 130 121 100 221 6 128 69 120 131 139 102 136 140 90 99 91 92 107 162 155 160 154 149 165 152 151 159 153 133 116 135 141 150 132 117 114 158 156 137 169 161 122 167 157 164 144 148 163 166 168 142 145 146 143 220 15 191 12 29 225 147 + + + ICCARM + 147 128 216 27 220 232 6 219 221 15 69 191 225 29 108 12 89 120 109 131 174 139 98 102 88 136 110 140 179 90 115 99 86 91 134 92 177 107 112 162 93 155 123 160 173 154 106 149 85 165 105 152 172 151 138 159 94 153 101 133 176 116 113 135 83 141 124 150 170 132 103 117 96 114 119 158 87 156 127 137 111 169 118 161 178 122 125 167 95 157 129 164 84 144 126 148 104 163 130 166 175 168 121 142 97 145 100 146 143 @@ -295,398 +385,25 @@ BICOMP - 224 + 65 ICCARM - 225 + 81 __cstat - 93 + 205 BICOMP - 155 171 188 154 153 179 191 156 166 176 157 159 197 193 163 + 220 6 10 80 27 219 203 29 208 213 32 232 221 15 207 35 48 ICCARM - 197 154 155 159 171 157 179 176 163 166 153 156 193 191 188 - - - - - $PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c - - - BICOMP - 217 - - - ICCARM - 244 - - - __cstat - 149 - - - - - BICOMP - 154 207 201 159 218 212 230 198 195 183 163 213 236 156 196 208 197 166 222 155 202 221 193 219 186 210 181 235 188 200 232 211 228 229 185 182 187 227 184 194 209 231 234 220 153 171 176 157 179 240 206 237 205 199 203 204 190 192 - - - ICCARM - 232 211 220 154 155 159 171 157 179 176 163 166 153 219 240 202 195 206 222 237 218 205 213 212 228 199 229 200 196 182 186 187 183 227 210 184 208 194 221 201 209 198 236 203 230 181 235 204 190 185 231 234 188 207 192 197 156 193 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c - - - BICOMP - 241 - - - ICCARM - 243 - - - __cstat - 102 - - - - - BICOMP - 50 20 37 165 49 40 52 30 22 54 21 171 155 19 160 177 38 23 17 48 41 53 29 27 28 18 31 179 162 44 39 25 35 51 47 26 71 79 74 58 86 55 46 78 72 76 33 87 80 32 60 176 157 161 70 141 142 24 64 65 36 45 57 81 61 56 66 34 42 77 43 73 85 95 88 118 84 68 100 114 105 104 69 115 109 67 108 101 110 106 59 103 116 97 107 94 91 111 75 82 63 62 159 163 83 151 156 180 246 - - - ICCARM - 246 161 160 155 159 171 157 179 176 163 70 83 180 156 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c - - - BICOMP - 138 - - - ICCARM - 139 - - - __cstat - 117 - - - - - ICCARM - 191 246 161 160 155 159 171 157 179 176 163 70 83 180 156 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c - - - BICOMP - 129 - - - ICCARM - 119 - - - __cstat - 96 - - - - - BICOMP - 214 154 159 163 155 169 156 193 172 197 166 153 171 176 157 179 175 - - - ICCARM - 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 214 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c - - - BICOMP - 121 - - - ICCARM - 147 - - - __cstat - 99 - - - - - BICOMP - 155 176 223 158 156 159 163 237 166 171 152 157 179 - - - ICCARM - 152 158 156 155 237 159 171 157 179 176 163 166 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c - - - BICOMP - 134 - - - ICCARM - 146 - - - __cstat - 113 - - - - - BICOMP - 238 155 223 166 159 154 175 179 152 237 169 226 172 158 156 153 157 233 171 176 163 - - - ICCARM - 233 169 175 172 238 226 158 156 155 152 154 159 171 157 179 176 163 166 153 237 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S - - - AARM - 127 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c - - - BICOMP - 148 - - - ICCARM - 136 - - - __cstat - 125 - - - - - BICOMP - 157 159 154 155 156 179 197 193 166 153 171 176 163 - - - ICCARM - 197 154 155 159 171 157 179 176 163 166 153 156 193 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c - - - BICOMP - 122 - - - ICCARM - 140 - - - __cstat - 92 - - - - - BICOMP - 65 103 163 159 155 118 34 115 82 151 156 141 81 73 114 101 94 24 45 56 77 95 68 104 67 106 97 111 246 193 172 70 142 64 36 57 61 66 42 43 85 88 84 100 105 69 109 108 110 59 116 107 91 75 63 62 83 180 169 239 154 166 153 171 176 157 179 175 161 160 177 162 165 44 38 39 52 25 23 35 50 51 17 47 30 26 48 71 49 79 41 74 22 58 53 86 37 55 29 46 54 78 27 72 40 76 28 33 21 87 18 80 20 32 31 60 19 197 - - - ICCARM - 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 246 161 160 70 83 180 19 151 177 141 162 142 165 24 44 64 38 65 39 36 52 45 25 57 23 81 35 61 50 56 51 66 17 34 47 42 30 77 26 43 48 73 71 85 49 95 79 88 41 118 74 84 22 68 58 100 53 114 86 105 37 104 55 69 29 115 46 109 54 67 78 108 27 101 72 110 40 106 76 59 28 103 33 116 21 97 87 107 18 94 80 91 20 111 32 75 31 82 60 63 62 239 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c - - - BICOMP - 144 - - - ICCARM - 131 - - - __cstat - 112 - - - - - BICOMP - 157 159 155 176 163 154 197 171 179 156 193 166 153 - - - ICCARM - 159 155 171 157 179 176 163 197 154 166 153 156 193 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c - - - BICOMP - 135 - - - ICCARM - 137 - - - __cstat - 89 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c - - - BICOMP - 124 - - - ICCARM - 150 - - - __cstat - 123 - - - - - BICOMP - 163 159 155 158 156 154 166 153 152 171 176 157 179 - - - ICCARM - 152 158 156 155 154 159 171 157 179 176 163 166 153 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c - - - BICOMP - 133 - - - ICCARM - 130 - - - __cstat - 90 - - - - - BICOMP - 159 155 171 153 156 193 166 176 163 239 154 157 179 197 - - - ICCARM - 197 154 155 159 171 157 179 176 163 166 153 156 193 239 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c - - - BICOMP - 128 - - - ICCARM - 126 - - - __cstat - 98 - - - - - BICOMP - 157 159 155 176 163 154 197 171 179 156 193 166 153 - - - ICCARM - 159 155 171 157 179 176 163 197 154 166 153 156 193 - - - - - $PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c - - - BICOMP - 120 - - - ICCARM - 145 - - - __cstat - 143 - - - - - BICOMP - 156 159 163 155 152 193 158 169 154 166 153 171 176 157 179 172 197 175 - - - ICCARM - 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 152 158 + 207 10 27 220 232 6 219 221 15 213 32 29 208 203 80 48 35 @@ -695,13 +412,300 @@ ILINK - 170 + 214 ILINK - 178 244 139 127 130 136 140 225 137 150 147 146 119 145 243 242 126 131 189 164 173 167 174 168 + 226 33 9 197 198 17 13 81 16 14 26 23 200 19 82 77 182 189 38 171 211 218 217 223 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c + + + BICOMP + 8 + + + ICCARM + 23 + + + __cstat + 206 + + + + + BICOMP + 209 27 75 213 220 10 233 219 185 45 235 195 234 210 29 32 6 190 232 221 15 + + + ICCARM + 190 235 233 234 209 195 210 29 27 185 10 220 232 6 219 221 15 213 32 45 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c + + + BICOMP + 212 + + + ICCARM + 13 + + + __cstat + 193 + + + + + BICOMP + 136 157 15 220 27 153 155 114 145 12 29 120 91 165 141 169 163 139 90 107 154 151 116 132 156 122 144 168 147 208 234 69 131 102 140 99 92 162 160 149 152 159 133 135 150 117 158 137 161 167 164 148 166 142 146 143 191 225 235 204 10 213 32 232 221 6 219 233 128 216 89 109 174 98 88 110 179 115 86 134 177 112 93 123 173 106 85 105 172 138 94 101 176 113 83 124 170 103 96 119 87 127 111 118 178 125 95 129 84 126 104 130 175 121 97 100 108 207 + + + ICCARM + 207 10 27 220 232 6 219 221 15 213 32 29 208 235 233 234 147 128 216 69 191 225 108 12 89 120 109 131 174 139 98 102 88 136 110 140 179 90 115 99 86 91 134 92 177 107 112 162 93 155 123 160 173 154 106 149 85 165 105 152 172 151 138 159 94 153 101 133 176 116 113 135 83 141 124 150 170 132 103 117 96 114 119 158 87 156 127 137 111 169 118 161 178 122 125 167 95 157 129 164 84 144 126 148 104 163 130 166 175 168 121 142 97 145 100 146 143 204 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c + + + BICOMP + 20 + + + ICCARM + 198 + + + __cstat + 180 + + + + + BICOMP + 220 27 232 32 29 208 213 221 15 204 10 6 219 207 + + + ICCARM + 207 10 27 220 232 6 219 221 15 213 32 29 208 204 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c + + + BICOMP + 187 + + + ICCARM + 19 + + + __cstat + 25 + + + + + BICOMP + 29 220 15 27 185 208 210 235 10 213 32 232 221 6 219 234 207 233 + + + ICCARM + 207 10 27 220 232 6 219 221 15 213 32 29 208 235 233 234 185 210 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c + + + BICOMP + 11 + + + ICCARM + 16 + + + __cstat + 192 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c + + + BICOMP + 229 + + + ICCARM + 14 + + + __cstat + 230 + + + + + BICOMP + 15 220 27 210 29 10 213 32 185 232 221 6 219 + + + ICCARM + 185 210 29 27 10 220 232 6 219 221 15 213 32 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c + + + BICOMP + 184 + + + ICCARM + 182 + + + __cstat + 201 + + + + + BICOMP + 6 220 27 221 15 10 207 232 219 29 208 213 32 + + + ICCARM + 220 27 232 6 219 221 15 207 10 213 32 29 208 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c + + + BICOMP + 183 + + + ICCARM + 200 + + + __cstat + 181 + + + + + BICOMP + 196 10 220 15 27 235 29 208 234 207 213 32 232 221 6 219 233 + + + ICCARM + 207 10 27 220 232 6 219 221 15 213 32 29 208 235 233 234 196 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c + + + BICOMP + 22 + + + ICCARM + 17 + + + __cstat + 202 + + + + + BICOMP + 6 220 10 27 29 219 207 208 213 32 232 221 15 + + + ICCARM + 207 10 27 220 232 6 219 221 15 213 32 29 208 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c + + + BICOMP + 222 + + + ICCARM + 26 + + + __cstat + 194 + + + + + BICOMP + 27 221 75 210 29 220 15 45 213 232 185 6 219 + + + ICCARM + 185 210 29 27 45 220 232 6 219 221 15 213 + + + + + $PROJ_DIR$\..\..\extract_trial_here\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c + + + BICOMP + 7 + + + ICCARM + 189 + + + __cstat + 199 + + + + + BICOMP + 6 220 27 221 15 10 207 232 219 29 208 213 32 + + + ICCARM + 220 27 232 6 219 221 15 207 10 213 32 29 208 @@ -713,6 +717,9 @@ [MULTI_TOOL] ILINK + + [REBUILD_ALL] + diff --git a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd index 56146314e..f71f565f6 100644 --- a/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd +++ b/IDE/IAR-EWARM/embOS/SAMV71_XULT/embOS_wolfcrypt_benchmark_SAMV71_XULT/wolfcrypt_benchmark.ewd @@ -37,7 +37,7 @@ @@ -780,7 +780,7 @@ @@ -780,7 +780,7 @@