blob: 34268f47b2693891729d7bd03dd12b81d39817f1 [file] [log] [blame]
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +01001#
Kristofer Jonsson93175812022-04-21 19:27:11 +02002# Copyright (c) 2021-2022 Arm Limited.
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +01003#
4# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the License); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an AS IS BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
Lior Dekel52fddd02021-10-04 19:15:24 +030019# Exclude this app if freertos target does not exist or if NPU configuration is not H128
Kristofer Jonsson15625f12021-11-24 14:16:34 +010020if (NOT TARGET freertos_kernel OR NOT TARGET ethosu_core_driver OR NOT ETHOSU_TARGET_NPU_CONFIG STREQUAL "ethos-u55-128")
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010021 message("Skipping FreeRTOS application")
22 return()
23endif()
24
Per Åstrandea650ac2021-02-24 11:52:54 +010025ethosu_add_executable_test(freertos PRIVATE
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010026 SOURCES main.cpp
Kristofer Jonsson8f813b32022-11-23 13:05:47 +010027 LIBRARIES inference_process freertos_kernel)
Anton Moberg6f7ca192021-03-29 16:13:29 +020028target_include_directories(freertos PRIVATE models/mobilenet_v2)
Per Åstrand81e01af2021-02-19 13:45:26 +010029
30# Use the fast memory to support both 11.12.57 and 11.13.x release
31# of the FVP
Kristofer Jonsson93175812022-04-21 19:27:11 +020032target_compile_options(freertos PRIVATE
33 -UETHOSU_FAST_MEMORY_SIZE -DETHOSU_FAST_MEMORY_SIZE=0xa0000
34 -UETHOSU_ARENA -DETHOSU_ARENA=1
35 -UETHOSU_MODEL -DETHOSU_MODEL=1)