Migrated examples and tests to CMSIS build tools 2.0
parent
540161c115
commit
03222992b2
@ -1,193 +0,0 @@
|
||||
;/*
|
||||
; * Copyright (c) 2021-2022 Arm Limited. All rights reserved.
|
||||
; *
|
||||
; * Licensed under the Apache License, Version 2.0 (the "License");
|
||||
; * you may not use this file except in compliance with the License.
|
||||
; * You may obtain a copy of the License at
|
||||
; *
|
||||
; * http://www.apache.org/licenses/LICENSE-2.0
|
||||
; *
|
||||
; * Unless required by applicable law or agreed to in writing, software
|
||||
; * distributed under the License is distributed on an "AS IS" BASIS,
|
||||
; * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
; * See the License for the specific language governing permissions and
|
||||
; * limitations under the License.
|
||||
; *
|
||||
; *
|
||||
; * This file is derivative of CMSIS V5.00 gcc_arm.ld
|
||||
; */
|
||||
|
||||
/* Linker script to configure memory regions. */
|
||||
/* This file will be run trough the pre-processor. */
|
||||
|
||||
#include "region_defs.h"
|
||||
|
||||
MEMORY
|
||||
{
|
||||
FLASH (rx) : ORIGIN = S_CODE_START, LENGTH = S_CODE_SIZE
|
||||
RAM (rwx) : ORIGIN = S_DATA_START, LENGTH = S_DATA_SIZE
|
||||
}
|
||||
|
||||
__heap_size__ = HEAP_SIZE;
|
||||
__stack_size__ = STACK_SIZE;
|
||||
|
||||
/* Library configurations */
|
||||
GROUP(libgcc.a libc.a libm.a libnosys.a)
|
||||
|
||||
ENTRY(Reset_Handler)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text :
|
||||
{
|
||||
KEEP(*(.vectors))
|
||||
__Vectors_End = .;
|
||||
__Vectors_Size = __Vectors_End - __Vectors;
|
||||
__end__ = .;
|
||||
|
||||
*(.text*)
|
||||
|
||||
KEEP(*(.init))
|
||||
KEEP(*(.fini))
|
||||
|
||||
|
||||
/* .ctors */
|
||||
*crtbegin.o(.ctors)
|
||||
*crtbegin?.o(.ctors)
|
||||
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
|
||||
*(SORT(.ctors.*))
|
||||
*(.ctors)
|
||||
|
||||
/* .dtors */
|
||||
*crtbegin.o(.dtors)
|
||||
*crtbegin?.o(.dtors)
|
||||
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
|
||||
*(SORT(.dtors.*))
|
||||
*(.dtors)
|
||||
|
||||
*(.rodata*)
|
||||
|
||||
KEEP(*(.eh_frame*))
|
||||
} > FLASH
|
||||
|
||||
.ARM.extab :
|
||||
{
|
||||
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
||||
} > FLASH
|
||||
|
||||
__exidx_start = .;
|
||||
.ARM.exidx :
|
||||
{
|
||||
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
||||
} > FLASH
|
||||
__exidx_end = .;
|
||||
|
||||
/* To copy multiple ROM to RAM sections,
|
||||
* define etext2/data2_start/data2_end and
|
||||
* define __STARTUP_COPY_MULTIPLE in startup_cmsdk_mps3_an524_ns.S */
|
||||
.copy.table :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__copy_table_start__ = .;
|
||||
LONG (__etext)
|
||||
LONG (__data_start__)
|
||||
LONG ((__data_end__ - __data_start__) / 4)
|
||||
LONG (DEFINED(__etext2) ? __etext2 : 0)
|
||||
LONG (DEFINED(__data2_start__) ? __data2_start__ : 0)
|
||||
LONG (DEFINED(__data2_start__) ? ((__data2_end__ - __data2_start__) / 4) : 0)
|
||||
__copy_table_end__ = .;
|
||||
} > FLASH
|
||||
|
||||
/* To clear multiple BSS sections,
|
||||
* uncomment .zero.table section and,
|
||||
* define __STARTUP_CLEAR_BSS_MULTIPLE in startup_cmsdk_mps3_an524_ns.S */
|
||||
.zero.table :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__zero_table_start__ = .;
|
||||
LONG (__bss_start__)
|
||||
LONG ((__bss_end__ - __bss_start__) / 4)
|
||||
LONG (DEFINED(__bss2_start__) ? __bss2_start__ : 0)
|
||||
LONG (DEFINED(__bss2_start__) ? ((__bss2_end__ - __bss2_start__) / 4) : 0)
|
||||
__zero_table_end__ = .;
|
||||
} > FLASH
|
||||
|
||||
__etext = .;
|
||||
|
||||
#if defined(BL2_LINKER)
|
||||
.tfm_bl2_shared_data : ALIGN(32)
|
||||
{
|
||||
. += BOOT_TFM_SHARED_DATA_SIZE;
|
||||
} > RAM
|
||||
Image$$SHARED_DATA$$RW$$Base = ADDR(.tfm_bl2_shared_data);
|
||||
Image$$SHARED_DATA$$RW$$Limit = ADDR(.tfm_bl2_shared_data) + SIZEOF(.tfm_bl2_shared_data);
|
||||
#endif
|
||||
|
||||
.data : AT (__etext)
|
||||
{
|
||||
__data_start__ = .;
|
||||
*(vtable)
|
||||
*(.data*)
|
||||
|
||||
. = ALIGN(4);
|
||||
/* preinit data */
|
||||
PROVIDE_HIDDEN (__preinit_array_start = .);
|
||||
KEEP(*(.preinit_array))
|
||||
PROVIDE_HIDDEN (__preinit_array_end = .);
|
||||
|
||||
. = ALIGN(4);
|
||||
/* init data */
|
||||
PROVIDE_HIDDEN (__init_array_start = .);
|
||||
KEEP(*(SORT(.init_array.*)))
|
||||
KEEP(*(.init_array))
|
||||
PROVIDE_HIDDEN (__init_array_end = .);
|
||||
|
||||
|
||||
. = ALIGN(4);
|
||||
/* finit data */
|
||||
PROVIDE_HIDDEN (__fini_array_start = .);
|
||||
KEEP(*(SORT(.fini_array.*)))
|
||||
KEEP(*(.fini_array))
|
||||
PROVIDE_HIDDEN (__fini_array_end = .);
|
||||
|
||||
KEEP(*(.jcr*))
|
||||
. = ALIGN(4);
|
||||
/* All data end */
|
||||
__data_end__ = .;
|
||||
|
||||
} > RAM
|
||||
Image$$ER_DATA$$Base = ADDR(.data);
|
||||
|
||||
.bss :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__bss_start__ = .;
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
. = ALIGN(4);
|
||||
__bss_end__ = .;
|
||||
} > RAM
|
||||
|
||||
bss_size = __bss_end__ - __bss_start__;
|
||||
|
||||
.msp_stack : ALIGN(32)
|
||||
{
|
||||
. += __stack_size__;
|
||||
} > RAM
|
||||
__StackLimit = ADDR(.msp_stack);
|
||||
__StackTop = ADDR(.msp_stack) + SIZEOF(.msp_stack);
|
||||
|
||||
.heap : ALIGN(8)
|
||||
{
|
||||
. = ALIGN(8);
|
||||
__end__ = .;
|
||||
PROVIDE(end = .);
|
||||
__HeapBase = .;
|
||||
. += __heap_size__;
|
||||
__HeapLimit = .;
|
||||
__heap_limit = .; /* Add for _sbrk */
|
||||
} > RAM
|
||||
Image$$ARM_LIB_HEAP$$ZI$$Limit = ADDR(.heap) + SIZEOF(.heap);
|
||||
|
||||
PROVIDE(__stack = __StackTop);
|
||||
}
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'classmarks.Release+VHT-Corstone-300'
|
||||
* Target: 'classmarks.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'classmarks.Release+VHT-Corstone-310'
|
||||
* Target: 'classmarks.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'classmarks.Release+VHT_M0P'
|
||||
* Target: 'classmarks.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'classmarks.Release+VHT_M7'
|
||||
* Target: 'classmarks.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'convolution.Release+VHT-Corstone-300'
|
||||
* Target: 'convolution.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'convolution.Release+VHT-Corstone-310'
|
||||
* Target: 'convolution.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'convolution.Release+VHT_M0P'
|
||||
* Target: 'convolution.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'convolution.Release+VHT_M7'
|
||||
* Target: 'convolution.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'dotproduct.Release+VHT-Corstone-300'
|
||||
* Target: 'dotproduct.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'dotproduct.Release+VHT-Corstone-310'
|
||||
* Target: 'dotproduct.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'dotproduct.Release+VHT_M0P'
|
||||
* Target: 'dotproduct.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'dotproduct.Release+VHT_M7'
|
||||
* Target: 'dotproduct.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fftbin.Release+VHT-Corstone-300'
|
||||
* Target: 'fftbin.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fftbin.Release+VHT-Corstone-310'
|
||||
* Target: 'fftbin.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fftbin.Release+VHT_M0P'
|
||||
* Target: 'fftbin.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fftbin.Release+VHT_M7'
|
||||
* Target: 'fftbin.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fir.Release+VHT-Corstone-300'
|
||||
* Target: 'fir.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fir.Release+VHT-Corstone-310'
|
||||
* Target: 'fir.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fir.Release+VHT_M0P'
|
||||
* Target: 'fir.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'fir.Release+VHT_M7'
|
||||
* Target: 'fir.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'graphicequalizer.Release+VHT-Corstone-300'
|
||||
* Target: 'graphicequalizer.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'graphicequalizer.Release+VHT-Corstone-310'
|
||||
* Target: 'graphicequalizer.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'graphicequalizer.Release+VHT_M0P'
|
||||
* Target: 'graphicequalizer.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'graphicequalizer.Release+VHT_M7'
|
||||
* Target: 'graphicequalizer.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'linearinterp.Release+VHT-Corstone-300'
|
||||
* Target: 'linearinterp.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'linearinterp.Release+VHT-Corstone-310'
|
||||
* Target: 'linearinterp.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'linearinterp.Release+VHT_M0P'
|
||||
* Target: 'linearinterp.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'linearinterp.Release+VHT_M7'
|
||||
* Target: 'linearinterp.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'matrix.Release+VHT-Corstone-300'
|
||||
* Target: 'matrix.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'matrix.Release+VHT-Corstone-310'
|
||||
* Target: 'matrix.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'matrix.Release+VHT_M0P'
|
||||
* Target: 'matrix.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'matrix.Release+VHT_M7'
|
||||
* Target: 'matrix.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'signalconverge.Release+VHT-Corstone-300'
|
||||
* Target: 'signalconverge.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'signalconverge.Release+VHT-Corstone-310'
|
||||
* Target: 'signalconverge.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'signalconverge.Release+VHT_M0P'
|
||||
* Target: 'signalconverge.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'signalconverge.Release+VHT_M7'
|
||||
* Target: 'signalconverge.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'sincos.Release+VHT-Corstone-300'
|
||||
* Target: 'sincos.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'sincos.Release+VHT-Corstone-310'
|
||||
* Target: 'sincos.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'sincos.Release+VHT_M0P'
|
||||
* Target: 'sincos.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'sincos.Release+VHT_M7'
|
||||
* Target: 'sincos.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'svm.Release+VHT-Corstone-300'
|
||||
* Target: 'svm.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'svm.Release+VHT-Corstone-310'
|
||||
* Target: 'svm.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'svm.Release+VHT_M0P'
|
||||
* Target: 'svm.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'svm.Release+VHT_M7'
|
||||
* Target: 'svm.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'variance.Release+VHT-Corstone-300'
|
||||
* Target: 'variance.Release+VHT-Corstone-300'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE300MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'variance.Release+VHT-Corstone-310'
|
||||
* Target: 'variance.Release+VHT-Corstone-310'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "SSE310MPS3.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'variance.Release+VHT_M0P'
|
||||
* Target: 'variance.Release+VHT_M0P'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM0plus.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,21 +0,0 @@
|
||||
|
||||
/*
|
||||
* Auto generated Run-Time-Environment Configuration File
|
||||
* *** Do not modify ! ***
|
||||
*
|
||||
* Project: 'variance.Release+VHT_M7'
|
||||
* Target: 'variance.Release+VHT_M7'
|
||||
*/
|
||||
|
||||
#ifndef RTE_COMPONENTS_H
|
||||
#define RTE_COMPONENTS_H
|
||||
|
||||
|
||||
/*
|
||||
* Define the Device Header File:
|
||||
*/
|
||||
#define CMSIS_device_header "ARMCM7_DP.h"
|
||||
|
||||
|
||||
|
||||
#endif /* RTE_COMPONENTS_H */
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/bayes/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/bayes/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_bayes_example/arm_bayes_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/bayes/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/bayes/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_bayes_example/arm_bayes_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/bayes/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/bayes/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_bayes_example/arm_bayes_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/bayes/VHT_M7/Release" name="Release+VHT_M7" outdir="out/bayes/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_bayes_example/arm_bayes_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_bayes_example/arm_bayes_example_f32.c
|
||||
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
cbuild "bayes.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "linearinterp.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "classmarks.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "matrix.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "convolution.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "signalconverge.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "dotproduct.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "sincos.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "fftbin.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "svm.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "fir.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "variance.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "graphicequalizer.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/bayes.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/linearinterp.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/classmarks.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/matrix.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/convolution.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/signalconverge.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/dotproduct.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/sincos.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/fftbin.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/svm.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/fir.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/variance.Release+VHT-Corstone-300.cprj"
|
||||
cbuild "projects/graphicequalizer.Release+VHT-Corstone-300.cprj"
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/classmarks/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/classmarks/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_class_marks_example/arm_class_marks_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/classmarks/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/classmarks/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_class_marks_example/arm_class_marks_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/classmarks/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/classmarks/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_class_marks_example/arm_class_marks_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/classmarks/VHT_M7/Release" name="Release+VHT_M7" outdir="out/classmarks/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_class_marks_example/arm_class_marks_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_class_marks_example/arm_class_marks_example_f32.c
|
||||
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
|
||||
@ -1,88 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/convolution/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/convolution/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../ARM/arm_convolution_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/arm_convolution_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,88 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/convolution/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/convolution/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../ARM/arm_convolution_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/arm_convolution_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/convolution/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/convolution/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_convolution_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/arm_convolution_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/convolution/VHT_M7/Release" name="Release+VHT_M7" outdir="out/convolution/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_convolution_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/arm_convolution_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_convolution_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,14 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_convolution_example/arm_convolution_example_f32.c
|
||||
- file: ../ARM/arm_convolution_example/math_helper.c
|
||||
add-paths:
|
||||
- ../ARM/arm_convolution_example
|
||||
|
||||
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/dotproduct/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/dotproduct/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/dotproduct/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/dotproduct/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/dotproduct/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/dotproduct/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/dotproduct/VHT_M7/Release" name="Release+VHT_M7" outdir="out/dotproduct/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,9 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
|
||||
@ -1,82 +0,0 @@
|
||||
build-idx:
|
||||
csolution: examples.csolution_gcc.yml
|
||||
cprojects:
|
||||
- cproject: bayes.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: classmarks.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: convolution.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: dotproduct.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: fftbin.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: fir.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: graphicequalizer.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: linearinterp.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: matrix.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: signalconverge.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: sincos.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: svm.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
- cproject: variance.cproject.yml
|
||||
clayers:
|
||||
- clayer: vht.clayer.yml
|
||||
- clayer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
cbuilds:
|
||||
- cbuild: bayes.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: bayes.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: classmarks.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: classmarks.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: convolution.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: convolution.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: dotproduct.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: dotproduct.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: fftbin.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: fftbin.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: fir.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: fir.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: graphicequalizer.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: graphicequalizer.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: linearinterp.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: linearinterp.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: matrix.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: matrix.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: signalconverge.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: signalconverge.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: sincos.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: sincos.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: svm.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: svm.Release+VHT_M7.cbuild.yml
|
||||
- cbuild: variance.Release+VHT_M0P.cbuild.yml
|
||||
- cbuild: variance.Release+VHT_M7.cbuild.yml
|
||||
@ -1,88 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fftbin/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/fftbin/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_data.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,88 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fftbin/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/fftbin/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_data.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fftbin/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/fftbin/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_data.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fftbin/VHT_M7/Release" name="Release+VHT_M7" outdir="out/fftbin/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fft_bin_example/arm_fft_bin_data.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,11 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c
|
||||
- file: ../ARM/arm_fft_bin_example/arm_fft_bin_data.c
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
- layer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
|
||||
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fir/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/fir/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../ARM/arm_fir_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fir/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/fir/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../ARM/arm_fir_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fir/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/fir/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_fir_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/fir/VHT_M7/Release" name="Release+VHT_M7" outdir="out/fir/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_fir_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/arm_fir_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_fir_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,16 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_fir_example/arm_fir_example_f32.c
|
||||
- file: ../ARM/arm_fir_example/arm_fir_data.c
|
||||
- file: ../ARM/arm_fir_example/math_helper.c
|
||||
add-paths:
|
||||
- ../ARM/arm_fir_example
|
||||
|
||||
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
- layer: ../../Testing/cmsis_build/dsp.clayer.yml
|
||||
|
||||
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/graphicequalizer/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/graphicequalizer/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../ARM/arm_graphic_equalizer_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/graphicequalizer/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/graphicequalizer/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../ARM/arm_graphic_equalizer_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/graphicequalizer/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/graphicequalizer/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_graphic_equalizer_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/graphicequalizer/VHT_M7/Release" name="Release+VHT_M7" outdir="out/graphicequalizer/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_graphic_equalizer_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_graphic_equalizer_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,15 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c
|
||||
- file: ../ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c
|
||||
- file: ../ARM/arm_graphic_equalizer_example/math_helper.c
|
||||
add-paths:
|
||||
- ../ARM/arm_graphic_equalizer_example
|
||||
|
||||
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
|
||||
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/linearinterp/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/linearinterp/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../ARM/arm_linear_interp_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/linearinterp/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/linearinterp/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../ARM/arm_linear_interp_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/linearinterp/VHT_M0P/Release" name="Release+VHT_M0P" outdir="out/linearinterp/VHT_M0P/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM0P/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_linear_interp_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/startup_ARMCM0plus.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c" version="1.0.0"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T11:04:42" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
|
||||
<output intdir="tmp/linearinterp/VHT_M7/Release" name="Release+VHT_M7" outdir="out/linearinterp/VHT_M7/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter -DDISABLEFLOAT16" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections" compiler="GCC" file="RTE/Device/ARMCM7_DP/gcc_arm.ld"/>
|
||||
<includes>../ARM/arm_linear_interp_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" rtedir="RTE">
|
||||
<file attr="config" category="linkerScript" name="Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld" version="2.1.0"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/startup_ARMCM7.c" version="2.0.3"/>
|
||||
<file attr="config" category="sourceC" name="Device/ARM/ARMCM7/Source/system_ARMCM7.c" version="1.0.1"/>
|
||||
</component>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/arm_linear_interp_data.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_linear_interp_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,15 +0,0 @@
|
||||
project:
|
||||
groups:
|
||||
- group: App
|
||||
files:
|
||||
- file: ../ARM/arm_linear_interp_example/arm_linear_interp_example_f32.c
|
||||
- file: ../ARM/arm_linear_interp_example/arm_linear_interp_data.c
|
||||
- file: ../ARM/arm_linear_interp_example/math_helper.c
|
||||
add-paths:
|
||||
- ../ARM/arm_linear_interp_example
|
||||
|
||||
|
||||
|
||||
layers:
|
||||
- layer: vht.clayer.yml
|
||||
|
||||
@ -1,88 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:38:49" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_300_BSP" vendor="ARM" version="1.3.0:1.3.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="AC6" version="6.19.4"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/matrix/VHT-Corstone-300/Release" name="Release+VHT-Corstone-300" outdir="out/matrix/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="AC6"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="AC6"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="AC6"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
|
||||
<includes>../ARM/arm_matrix_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.1.2"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.2.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.1.1"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.1.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.1.3"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE300MPS3.h" version="1.1.1"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/armclang/fvp_sse300_mps3_s.sct" version="1.1.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_fvp_sse300_mps3.c" version="1.1.1"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE300MPS3.c" version="1.1.1"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.1.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_matrix_example/arm_matrix_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_matrix_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
@ -1,88 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<cprj schemaVersion="1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
|
||||
<created timestamp="2023-04-12T10:41:59" tool="csolution 1.5.0"/>
|
||||
|
||||
<info isLayer="false">
|
||||
<description>Automatically generated project</description>
|
||||
</info>
|
||||
|
||||
<packages>
|
||||
<package name="CMSIS" vendor="ARM" version="5.9.0:5.9.0"/>
|
||||
<package name="V2M_MPS3_SSE_310_BSP" vendor="ARM" version="1.1.0:1.1.0"/>
|
||||
</packages>
|
||||
|
||||
<compilers>
|
||||
<compiler name="GCC" version="12.2.0:12.2.0"/>
|
||||
</compilers>
|
||||
|
||||
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
|
||||
<output intdir="tmp/matrix/VHT-Corstone-310/Release" name="Release+VHT-Corstone-310" outdir="out/matrix/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
|
||||
<options debug="on"/>
|
||||
<asflags add="-masm=auto" compiler="GCC"/>
|
||||
<cflags add="-DSEMIHOSTING -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c11 -Ofast -ffast-math -flax-vector-conversions" compiler="GCC"/>
|
||||
<cxxflags add="-fno-rtti -ffunction-sections -mfp16-format=ieee -fdata-sections -std=c++11 -Ofast -ffast-math -flax-vector-conversions -Wno-unused-parameter" compiler="GCC"/>
|
||||
<ldflags add="--specs=nano.specs --specs=rdimon.specs --entry=Reset_Handler -Wl,--gc-sections --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="GCC" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.ld"/>
|
||||
<includes>../ARM/arm_matrix_example;../../Include;../../PrivateInclude</includes>
|
||||
</target>
|
||||
|
||||
<components>
|
||||
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.6.0"/>
|
||||
<component Cclass="Device" Cgroup="Definition" Cvendor="ARM" Cversion="1.1.0" rtedir="RTE">
|
||||
<file attr="config" category="header" name="Board/Platform/platform_base_address.h" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="Baremetal" Cvendor="ARM" Cversion="1.0.1" rtedir="RTE">
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/Baremetal/cmsis_driver_config.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="CMSIS_Driver/Config/RTE_Device.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Config/Baremetal/device_cfg.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_defs.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/region_limits.h" version="1.0.0"/>
|
||||
<file attr="config" category="header" name="Device/Include/system_SSE310MPS3.h" version="1.0.0"/>
|
||||
<file attr="config" category="linkerScript" name="Device/Source/gcc/corstone310_mps3_s.ld" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/startup_SSE310MPS3.c" version="1.0.0"/>
|
||||
<file attr="config" category="source" name="Device/Source/system_SSE310MPS3.c" version="1.0.0"/>
|
||||
</component>
|
||||
<component Cclass="Native Driver" Cgroup="SysCounter" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="SysTimer" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
<component Cclass="Native Driver" Cgroup="Timeout" Cvendor="ARM" Cversion="1.0.0"/>
|
||||
</components>
|
||||
|
||||
<files>
|
||||
<group name="App">
|
||||
<file category="sourceC" name="../ARM/arm_matrix_example/arm_matrix_example_f32.c"/>
|
||||
<file category="sourceC" name="../ARM/arm_matrix_example/math_helper.c"/>
|
||||
</group>
|
||||
<group name="CMSIS-DSP">
|
||||
<defines>ARM_MATH_ROUNDING</defines>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BasicMathFunctions/BasicMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/DistanceFunctions/DistanceFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/MatrixFunctions/MatrixFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/BayesFunctions/BayesFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FastMathFunctions/FastMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/QuaternionMathFunctions/QuaternionMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/StatisticsFunctions/StatisticsFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTables.c"/>
|
||||
<file category="sourceC" name="../../Source/CommonTables/CommonTablesF16.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/FilteringFunctions/FilteringFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SupportFunctions/SupportFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/ComplexMathFunctions/ComplexMathFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/SVMFunctions/SVMFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/InterpolationFunctions/InterpolationFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/TransformFunctions/TransformFunctionsF16.c"/>
|
||||
<file category="sourceC" name="../../Source/ControllerFunctions/ControllerFunctions.c"/>
|
||||
<file category="sourceC" name="../../Source/WindowFunctions/WindowFunctions.c"/>
|
||||
</group>
|
||||
</files>
|
||||
</cprj>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue