blob: 610f0e5f59510c0aa9ee1e3818e0968d08059976 [file] [log] [blame]
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +01001#
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3#
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
27 LIBRARIES 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
Jonny Svärdf521be92021-03-01 14:35:49 +010032# The size is defined to force the .bss.tensor_arena to be placed in DDR
Per Åstrand81e01af2021-02-19 13:45:26 +010033target_compile_definitions(
34 freertos PRIVATE ETHOSU_FAST_MEMORY_SIZE=0xa0000)