mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
wolfSSL embOS port Initialize
self-review complete Removed autogenerated files
This commit is contained in:
23
IDE/IAR-EWARM/embOS/README
Normal file
23
IDE/IAR-EWARM/embOS/README
Normal file
@ -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.
|
||||
|
104
IDE/IAR-EWARM/embOS/README_SAMV71
Normal file
104
IDE/IAR-EWARM/embOS/README_SAMV71
Normal file
@ -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:\<path-to>\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.
|
||||
|
215
IDE/IAR-EWARM/embOS/README_custom_port
Normal file
215
IDE/IAR-EWARM/embOS/README_custom_port
Normal file
@ -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 <Your CPU or Company or something unique>
|
||||
(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:<path to>\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 <Click to add>
|
||||
Browse to "wolfssl" directory on your PC and click "Select" then "Ok"
|
||||
You should now see "C:\<path to>\wolfssl" in that field
|
||||
Click <Click to add> 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:\<path to>\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\<VENDOR>\<CPU>\Start_<CPU>.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 <Click to add>
|
||||
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 <Click to add>
|
||||
Browse to C:\<path to>\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 <stdio.h>
|
||||
#include <wolfcrypt/test/test.h>
|
||||
|
||||
#--- 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.
|
||||
|
@ -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 };
|
@ -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_ */
|
@ -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_ */
|
@ -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_ */
|
@ -0,0 +1,31 @@
|
||||
#include "RTOS.h"
|
||||
#include "BSP.h"
|
||||
#include <wolfcrypt/benchmark/benchmark.h>
|
||||
|
||||
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 *************************************************/
|
@ -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"
|
||||
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<crun>
|
||||
<version>1</version>
|
||||
<filter_entries>
|
||||
<filter index="0" type="default">
|
||||
<type>*</type>
|
||||
<start_file>*</start_file>
|
||||
<end_file>*</end_file>
|
||||
<action_debugger>0</action_debugger>
|
||||
<action_log>1</action_log>
|
||||
</filter>
|
||||
</filter_entries>
|
||||
</crun>
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -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
|
@ -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
|
@ -0,0 +1,719 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<project>
|
||||
<fileVersion>2</fileVersion>
|
||||
<fileChecksum>3271176394</fileChecksum>
|
||||
<configuration>
|
||||
<name>Debug</name>
|
||||
<outputs>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c</file>
|
||||
<file>$PROJ_DIR$\Application\runBenchmarks.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\smc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piod.h</file>
|
||||
<file>$TOOLKIT_DIR$\CMSIS\Include\core_cmFunc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\efc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pmc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\dacc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mlb.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\twihs.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\aes.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pmc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\isi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\tc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rswdt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rtc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\chipid.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\spi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\qspi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\isi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gpbr.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\icm.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\smc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\supc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\uart.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\efc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\mcan.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc3.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\ssc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usart.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\xdmac.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rswdt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\matrix.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart2.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\acc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rtc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pio.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\utmi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart3.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\rstc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\pio\samv71q21.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart4.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\gmac.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\hsmci.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\sdramc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs2.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pwm0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\icm.h</file>
|
||||
<file>$TOOLKIT_DIR$\CMSIS\Include\core_cm7.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\utmi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\xdmac.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\usbhs.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc2.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gpbr.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\matrix.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\trng.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\afec1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\ssc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\rstc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\pwm.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart2.h</file>
|
||||
<file>$TOOLKIT_DIR$\CMSIS\Include\core_cmInstr.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\twihs0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\wdt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\piob.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi0.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\JLINKMEM_Process.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\supc.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\runBenchmarks.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioe.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\hsmci.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioa.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\xmtx.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usart1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\trng.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\startup_sam.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\dacc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\usbhs.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\sdramc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\pioc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mlb.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\spi1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\qspi.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\wdt.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\xmtx2.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\mcan0.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\gmac.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\uart1.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\BSP.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\instance\tc1.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_RTT.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_RTT.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\OS_Error.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\xmtx.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\HardFaultHandler.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\xmtx.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_Config_embOS.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\JLINKMEM_Process.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\xmtx2.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\system_sam.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\JLINKMEM_Process.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\OS_Error.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_HardFaultHandler.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\BSP.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\BSP.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\RTOSInit_SAMV71_CMSIS.o</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\acc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\afec.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\xmtx2.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW_embOS.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_SYSVIEW.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_RTT_printf.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\OS_Error.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\benchmark.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\SEGGER_RTT.o</file>
|
||||
<file>$TOOLKIT_DIR$\CMSIS\Include\core_cmSimd.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\string.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\intrinsics.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_Conf.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71q21.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\aes.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Threads.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Lib\os7m_tlv_dp.a</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\component\chipid.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
|
||||
<file>$TOOLKIT_DIR$\lib\rt7M_tl.a</file>
|
||||
<file>$TOOLKIT_DIR$\lib\dl7M_tln.a</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.h</file>
|
||||
<file>$PROJ_DIR$\Debug\List\wolfcrypt_benchmark.map</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\Global.h</file>
|
||||
<file>$TOOLKIT_DIR$\lib\shb_l.a</file>
|
||||
<file>$TOOLKIT_DIR$\lib\m7M_tlv.a</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xencoding_limits.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_samv71.h</file>
|
||||
<file>$PROJ_DIR$\..\embOS_SAMV71_XULT_Linker_Script\samv71q21_wolfssl.icf</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cmsis_iar.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\arc4.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\poly1305.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ecc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hc128.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.h</file>
|
||||
<file>$PROJ_DIR$\..\embOS_wolfcrypt_lib_SAMV71_XULT\Debug\Bin\wolfcrypt_lib.a</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\BSP.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\OS_Config.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\RTOS.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale_c.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\limits.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\mem_track.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\camellia.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\aes.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xmtx.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtls.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Exe\wolfcrypt_benchmark.out</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wolfcrypt_benchmark.pbd</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\benchmark.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
|
||||
<file>$PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdarg.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\runBenchmarks.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\runBenchmarks.o</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_ConfDefaults.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocaleuse.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\wchar.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hash.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ripemd.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Int.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\certs_test.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Conf.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\Inc\JLINKMEM.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ystdio.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\startup_sam.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\system_sam.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\startup_sam.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\benchmark.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\system_sam.pbi</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\samv71.h</file>
|
||||
</outputs>
|
||||
<file>
|
||||
<name>[ROOT_NODE]</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 215 170</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\system_sam.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 245</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 242</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 132</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\Application\runBenchmarks.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 224</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 225</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 93</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 155 171 188 154 153 179 191 156 166 176 157 159 197 193 163</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 197 154 155 159 171 157 179 176 163 166 153 156 193 191 188</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\benchmark\benchmark.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 217</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 244</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 149</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\DeviceSupport\startup_sam.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 241</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 243</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 102</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\BSP.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 138</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 139</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 117</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_Config_embOS.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 129</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 119</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 96</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 214 154 159 163 155 169 156 193 172 197 166 153 171 176 157 179 175</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 214</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT_printf.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 121</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 147</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 99</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 155 176 223 158 156 159 163 237 166 171 152 157 179</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 152 158 156 155 237 159 171 157 179 176 163 166</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 134</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 146</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 113</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 238 155 223 166 159 154 175 179 152 237 169 226 172 158 156 153 157 233 171 176 163</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 233 169 175 172 238 226 158 156 155 152 154 159 171 157 179 176 163 166 153 237</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\HardFaultHandler.S</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>AARM</name>
|
||||
<file> 127</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\OS_Error.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 148</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 136</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 125</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 157 159 154 155 156 179 197 193 166 153 171 176 163</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 197 154 155 159 171 157 179 176 163 166 153 156 193</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\RTOSInit_SAMV71_CMSIS.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 122</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 140</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 92</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx2.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 131</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 112</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 157 159 155 176 163 154 197 171 179 156 193 166 153</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 159 155 171 157 179 176 163 197 154 166 153 156 193</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_HardFaultHandler.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 135</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 137</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 89</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_RTT.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 124</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 150</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 123</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 163 159 155 158 156 154 166 153 152 171 176 157 179</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 152 158 156 155 154 159 171 157 179 176 163 166 153</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\JLINKMEM_Process.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 133</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 130</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 90</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 159 155 171 153 156 193 166 176 163 239 154 157 179 197</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 197 154 155 159 171 157 179 176 163 166 153 156 193 239</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\xmtx.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 128</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 126</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 98</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 157 159 155 176 163 154 197 171 179 156 193 166 153</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 159 155 171 157 179 176 163 197 154 166 153 156 193</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\..\..\..\..\embos-trial\Start\BoardSupport\Atmel\SAMV71_XPlainedUltra\Setup\SEGGER_SYSVIEW_embOS.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 120</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 145</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 143</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 156 159 163 155 152 193 158 169 154 166 153 171 176 157 179 172 197 175</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 197 154 155 159 171 157 179 176 163 166 153 156 193 169 175 172 152 158</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\Debug\Exe\wolfcrypt_benchmark.out</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 170</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 178 244 139 127 130 136 140 225 137 150 147 146 119 145 243 242 126 131 189 164 173 167 174 168</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
</configuration>
|
||||
<configuration>
|
||||
<name>Release</name>
|
||||
<outputs/>
|
||||
<forcedrebuild>
|
||||
<name>[MULTI_TOOL]</name>
|
||||
<tool>ILINK</tool>
|
||||
</forcedrebuild>
|
||||
</configuration>
|
||||
</project>
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,13 @@
|
||||
"--endian=little"
|
||||
|
||||
"--cpu=Cortex-M7"
|
||||
|
||||
"--fpu=VFPv5_D16"
|
||||
|
||||
"--semihosting"
|
||||
|
||||
"--multicore_nr_of_cores=1"
|
||||
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<crun>
|
||||
<version>1</version>
|
||||
<filter_entries>
|
||||
<filter index="0" type="default">
|
||||
<type>*</type>
|
||||
<start_file>*</start_file>
|
||||
<end_file>*</end_file>
|
||||
<action_debugger>0</action_debugger>
|
||||
<action_log>1</action_log>
|
||||
</filter>
|
||||
</filter_entries>
|
||||
</crun>
|
||||
|
||||
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<Project/>
|
||||
|
||||
|
@ -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
|
@ -0,0 +1,906 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<project>
|
||||
<fileVersion>2</fileVersion>
|
||||
<fileChecksum>2537152460</fileChecksum>
|
||||
<configuration>
|
||||
<name>Debug</name>
|
||||
<outputs>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\aes.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asn.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha20_poly1305.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dsa.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\des3.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\coding.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dh.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\random.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hmac.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md5.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hash.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\poly1305.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rsa.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha256.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\pwdbased.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rabbit.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\misc.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\memory.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\ecc.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md4.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hmac.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md2.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_port.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md4.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn_public.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\aes.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_encrypt.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha256.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dh.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\random.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\logging.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\md5.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\tfm.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_port.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\integer.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\misc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\pwdbased.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\coding.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\asn.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\des3.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rsa.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha512.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\types.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\error-crypt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\memory.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\visibility.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\settings.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\openssl\bn.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\dsa.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha20_poly1305.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\poly1305.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\ssl.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\hash.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\openssl\ssl.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\openssl\ec.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\ecc.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\chacha.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\version.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\tfm.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\dsa.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha512.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\asn.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\misc.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\memory.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\coding.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xencoding_limits.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\pwdbased.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\hash.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\embOS_SAMV71_XULT_user_settings\user_settings.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\hash.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\dsa.o</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\time.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha512.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\des3.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha256.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wc_encrypt.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wc_encrypt.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\rsa.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md5.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\math.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\hmac.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\dh.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\chacha20_poly1305.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wc_port.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\rabbit.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\memory.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wc_port.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\hmac.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md4.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md4.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\limits.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtgmath.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\aes.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\dsa.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\chacha.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\tfm.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md5.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md4.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\random.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\des3.o</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\poly1305.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\hmac.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\dh.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\pwdbased.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wolfcrypt_lib.pbd</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\ecc.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\chacha20_poly1305.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\memory.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\hash.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\rabbit.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\asn.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\aes.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\coding.o</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale_c.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\coding.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\chacha.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\tfm.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\string.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md5.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\random.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\misc.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\poly1305.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\chacha.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha256.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\poly1305.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha512.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Bin\wolfcrypt_lib.a</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\ecc.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\chacha20_poly1305.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\pwdbased.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\rsa.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wc_encrypt.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\aes.o</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ymath.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\misc.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\dh.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\ecc.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\random.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocaleuse.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\rsa.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\asn.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Threads.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xmtx.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\rabbit.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\des3.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\wchar.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtls.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\wc_port.o</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\rabbit.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\wc_encrypt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asm.c</file>
|
||||
<file>$PROJ_DIR$\..\..\..\..\..\wolfssl\wolfcrypt\sha512.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\tfm.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\sha256.o</file>
|
||||
<file>$PROJ_DIR$\..\embOS_wolfcrypt_test_SAMV71_XULT\Application\runWolfcryptTests.c</file>
|
||||
</outputs>
|
||||
<file>
|
||||
<name>[ROOT_NODE]</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>IARCHIVE</name>
|
||||
<file> 142</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\aes.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 125</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 148</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 104</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\asn.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 156</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 124</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 65</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha20_poly1305.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 120</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 93</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dsa.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 105</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 79</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 62</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\chacha.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 138</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 131</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 106</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\des3.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 160</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 112</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 82</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\coding.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 128</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 126</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 71</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\dh.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 116</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 151</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 91</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\random.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 153</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 135</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 111</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hmac.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 98</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 115</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 90</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md5.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 109</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 134</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 87</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\hash.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 77</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 122</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 74</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\poly1305.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 137</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 114</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 140</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rsa.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 146</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 155</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 86</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha256.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 139</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 169</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 83</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\pwdbased.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 73</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 145</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 117</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\rabbit.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 123</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 159</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 95</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\misc.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 136</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 150</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 69</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\memory.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 96</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 121</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 70</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 92</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 103</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 67</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\ecc.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 119</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 152</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 143</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\md4.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 110</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 99</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 100</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_encrypt.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 85</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 147</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 84</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\tfm.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 132</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 168</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 107</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\wc_port.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 97</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 163</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 94</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\..\..\..\wolfcrypt\src\sha512.c</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 81</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 141</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 64</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 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</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<forcedrebuild>
|
||||
<name>[REBUILD_ALL]</name>
|
||||
</forcedrebuild>
|
||||
</configuration>
|
||||
<configuration>
|
||||
<name>Release</name>
|
||||
<outputs/>
|
||||
<forcedrebuild>
|
||||
<name>[MULTI_TOOL]</name>
|
||||
<tool>ILINK</tool>
|
||||
</forcedrebuild>
|
||||
</configuration>
|
||||
</project>
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,31 @@
|
||||
#include "RTOS.h"
|
||||
#include "BSP.h"
|
||||
#include <wolfcrypt/test/test.h>
|
||||
|
||||
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 *************************************************/
|
@ -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"
|
||||
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<crun>
|
||||
<version>1</version>
|
||||
<filter_entries>
|
||||
<filter index="0" type="default">
|
||||
<type>*</type>
|
||||
<start_file>*</start_file>
|
||||
<end_file>*</end_file>
|
||||
<action_debugger>0</action_debugger>
|
||||
<action_log>1</action_log>
|
||||
</filter>
|
||||
</filter_entries>
|
||||
</crun>
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -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
|
@ -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
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -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 <sys/time.h>
|
||||
|
@ -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 <fcntl.h>
|
||||
#ifndef EBSNET
|
||||
#include <unistd.h>
|
||||
@ -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"
|
||||
|
||||
|
@ -969,7 +969,8 @@ WOLFSSL_API int wolfSSL_make_eap_keys(WOLFSSL*, void* key, unsigned int len,
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#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 <sys/uio.h>
|
||||
#endif
|
||||
/* allow writev style writing */
|
||||
|
@ -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 <wolfssl/wolfcrypt/visibility.h>
|
||||
|
||||
#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) && \
|
||||
|
Reference in New Issue
Block a user