From 154df68cb2a74a3b22456e8ec5af3af54352a41f Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 17 May 2022 22:37:09 +0200 Subject: fix buffer overflow in error handling module - fixed ring buffer overflow in errcatch module - fixed naming of commands in sercomm module - added comments to macro's in consts.h - properly handle `W2_E_WARN_UNCAUGHT_ERROR` and `W2_E_WARN_ERR_BUFFER_FULL` (these used to cause infinite loops) - added buffer full warning code - added options to hide some simulation messages - more boilerplate sercomm module code --- robot/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'robot/makefile') diff --git a/robot/makefile b/robot/makefile index 6f50519..ce57090 100644 --- a/robot/makefile +++ b/robot/makefile @@ -34,7 +34,7 @@ CFLAGS += -DW2_BUILD_STR="$(BUILD_STR)" all: $(if $(SIM), a.out, out.hex) clean: - rm -f *.o out.hex a.out compile_commands.json + rm -f *.o out.hex a.out a.out: $(OBJECTS) $(CC) $(OBJECTS) $(CFLAGS) $(LDFLAGS) -- cgit v1.2.3