blob: 5a231f7b6369bb6bc746af5f5dfa984ab0db2ce3 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
Richard Burtonf32a86a2022-11-15 11:46:11 +00002 * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
alexander3c798932021-03-26 21:42:19 +00003 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18/****************************************************************************\
19 * Main application file for ARM NPU on MPS3 board *
20\****************************************************************************/
21
22#include "hal.h" /* our hardware abstraction api */
alexander31ae9f02022-02-10 16:15:54 +000023#include "log_macros.h"
alexander3c798932021-03-26 21:42:19 +000024#include "TensorFlowLiteMicro.hpp" /* our inference logic api */
25
26#include <cstdio>
27
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010028extern void main_loop();
alexander3c798932021-03-26 21:42:19 +000029
30#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
31__ASM(" .global __ARM_use_no_argv\n");
32#endif
33
34/* Print application information. */
35static void print_application_intro()
36{
37 info("%s\n", PRJ_DES_STR);
alexander3c798932021-03-26 21:42:19 +000038 info("Version %s Build date: " __DATE__ " @ " __TIME__ "\n", PRJ_VER_STR);
Richard Burtonf32a86a2022-11-15 11:46:11 +000039 info("Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>\n\n");
alexander3c798932021-03-26 21:42:19 +000040}
41
42int main ()
43{
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010044 if (hal_platform_init()) {
alexander3c798932021-03-26 21:42:19 +000045 /* Application information, UART should have been initialised. */
46 print_application_intro();
47
48 /* Check the version of TensorFlow Lite Micro. */
49 PrintTensorFlowVersion();
50
51 /* Run the application. */
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010052 main_loop();
alexander3c798932021-03-26 21:42:19 +000053 }
54
55 /* This is unreachable without errors. */
56 info("program terminating...\n");
57
58 /* Release platform. */
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010059 hal_platform_release();
alexander3c798932021-03-26 21:42:19 +000060 return 0;
61}