-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathmain.cpp
More file actions
28 lines (24 loc) · 824 Bytes
/
main.cpp
File metadata and controls
28 lines (24 loc) · 824 Bytes
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
/*
* 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>
#define main arm_cmsis_dsp_example
#define std var_std
#define while \
return ARM_MATH_SUCCESS; \
void // has no status variable
#include "../../../../ext/arm/cmsis-dsp/CMSIS-DSP/Examples/ARM/arm_class_marks_example/arm_class_marks_example_f32.c"
#undef while
#undef main
#undef std
#define example_name "class_marks"
#include "../runner.cpp"