docs(fft): add C example for CDMA + FFT workflow

This commit is contained in:
2026-04-12 22:29:16 +08:00
parent ca425d75c9
commit 82003ba34e
2 changed files with 216 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
TARGET = fft_dma
CFLAGS += -O3 -g
C_SRCS := $(wildcard ./*.c )
OBJDIR = obj
COMMON_DIR = ../../bsp
GCC_DIR=../../../toolchains/loongson-gnu-toolchain-8.3-x86_64-loongarch32r-linux-gnusf-v2.0
PICOLIBC_DIR=../../../toolchains/picolibc
include ../../bsp/common.mk