Skip to content

Commit 1df7e52

Browse files
committed
add math linker test!
1 parent 4cc3251 commit 1df7e52

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#include <arm_math.h>
2+
3+
arm_rfft_fast_instance_f32 plan;
4+
5+
void setup() {
6+
arm_rfft_fast_init_f32(&plan, 256);
7+
}
8+
9+
void loop() {
10+
float in[256] = { 0 }, out[256] = { 0 };
11+
arm_rfft_fast_f32(&plan, in, out, 0);
12+
}

0 commit comments

Comments
 (0)