-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (27 loc) · 1 KB
/
main.cpp
File metadata and controls
31 lines (27 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* Copyright (c) 2019, Niklas Hauser
*
* This file is part of the modm project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// ----------------------------------------------------------------------------
#include <arm_math.h>
#include <modm/debug/logger.hpp>
#include <modm/platform.hpp>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsign-compare"
#define main arm_cmsis_dsp_example
#include "../../../../ext/arm/cmsis-dsp/CMSIS-DSP/Examples/ARM/arm_matrix_example/math_helper.c"
#include "../../../../ext/arm/cmsis-dsp/CMSIS-DSP/Examples/ARM/arm_matrix_example/math_helper.h"
#define while \
return status; \
void
#include "../../../../ext/arm/cmsis-dsp/CMSIS-DSP/Examples/ARM/arm_matrix_example/arm_matrix_example_f32.c"
#undef while
#undef main
#pragma GCC diagnostic pop
#define example_name "matrix"
#include "../runner.cpp"