blob: 3a1c110bfcc284b1f36fcd89b309b78a478b73e0 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
2 * Copyright (c) 2021 Arm Limited. All rights reserved.
3 * 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
28extern void main_loop(hal_platform& platform);
29
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);
38 info("Target system design: %s\n", DESIGN_NAME);
39 info("Version %s Build date: " __DATE__ " @ " __TIME__ "\n", PRJ_VER_STR);
Isabella Gottardi118f73e2021-09-16 17:54:35 +010040 info("Copyright (C) ARM Ltd 2021. All rights reserved.\n\n");
alexander3c798932021-03-26 21:42:19 +000041}
42
43int main ()
44{
45 hal_platform platform;
46 data_acq_module dataAcq;
47 data_psn_module dataPsn;
48 platform_timer timer;
49
50 /* Initialise the HAL and platform. */
51 hal_init(&platform, &dataAcq, &dataPsn, &timer);
52
53 if (0 == hal_platform_init(&platform)) {
54 /* Application information, UART should have been initialised. */
55 print_application_intro();
56
57 /* Check the version of TensorFlow Lite Micro. */
58 PrintTensorFlowVersion();
59
60 /* Run the application. */
61 main_loop(platform);
62 }
63
64 /* This is unreachable without errors. */
65 info("program terminating...\n");
66
67 /* Release platform. */
68 hal_platform_release(&platform);
69 return 0;
70}
71