add CORDIC

This commit is contained in:
Edward Emelianov
2026-08-04 18:22:58 +03:00
parent b8f3e5a695
commit 970d73dc38
26 changed files with 1676 additions and 6 deletions

13
G4:G431/CORDIC/Makefile Normal file
View File

@@ -0,0 +1,13 @@
BINARY := cordic
PREFIX := /usr/bin/arm-none-eabi
CFLAGS = -std=c23
CPPFLAGS = -std=c++11
# MCU code
MCU := G431xx
# change this linking script depending on particular MCU model,
LDSCRIPT := stm32g431xb.ld
LDLIBS += -lm
include ../makefile.g4
include ../../makefile.stm32