From 40a5ad5a359d803b7e4b9ced9582335a22a0aed7 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Wed, 1 Oct 2025 16:18:37 +0200 Subject: [PATCH] Add TWI module to build sources --- firmware/atmega/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/atmega/Makefile b/firmware/atmega/Makefile index c35ed6f..39625e9 100644 --- a/firmware/atmega/Makefile +++ b/firmware/atmega/Makefile @@ -13,7 +13,7 @@ O_FLAG = -Os BUILD_DIR = build OBJ_DIR = $(BUILD_DIR)/obj -SRCS_C = source/adc.c source/moisture.c source/main.c source/pump.c source/eeprom.c +SRCS_C = source/adc.c source/moisture.c source/main.c source/pump.c source/eeprom.c source/twi.c OBJS = $(addprefix $(OBJ_DIR)/, $(notdir $(SRCS_C:.c=.o))) CFLAGS = -Wall $(O_FLAG) -DF_CPU=$(F_CPU) -mmcu=$(MCU) -Iinclude