We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc3251 commit 1df7e52Copy full SHA for 1df7e52
1 file changed
libraries/CI_Tests/examples/test_cmsis_fast_rfft.ino
@@ -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