drivers: Optimize IMU drivers for size.

Those don't need to be fast.
This commit is contained in:
iabdalkader 2024-08-30 20:18:36 +02:00
parent 7259a33411
commit f03c2658e7
3 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,8 @@
# This work is licensed under the MIT license, see the file LICENSE for details.
#
# ST Makefile
override CFLAGS += -Os
SRCS = $(wildcard src/*.c)
OBJS = $(addprefix $(BUILD)/, $(SRCS:.c=.o))
OBJ_DIRS = $(sort $(dir $(OBJS)))

View File

@ -6,6 +6,8 @@
# This work is licensed under the MIT license, see the file LICENSE for details.
#
# ST Makefile
override CFLAGS += -Os
SRCS = $(wildcard src/*.c)
OBJS = $(addprefix $(BUILD)/, $(SRCS:.c=.o))
OBJ_DIRS = $(sort $(dir $(OBJS)))

View File

@ -6,6 +6,8 @@
# This work is licensed under the MIT license, see the file LICENSE for details.
#
# VL53L5CX Makefile
override CFLAGS += -Os
SRCS = $(wildcard src/*.c)
OBJS = $(addprefix $(BUILD)/, $(SRCS:.c=.o))
OBJ_DIRS = $(sort $(dir $(OBJS)))