From 3083284c797fc8fc267144b05c8a58395e4583e3 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 9 Aug 2025 16:06:43 +0300 Subject: add 1d mesh node and refactor 2d mesh node + Seems to decrease performance a little bit, presumably due to extra register copy, but simplifies code a lot and opens up more genericism so I'll consider it an upgrade for now. Copying packets around is rather slow though, might in the future move to some kind of pointer based packet handling --- tests/simple_mesh/source.mk | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 tests/simple_mesh/source.mk (limited to 'tests/simple_mesh/source.mk') diff --git a/tests/simple_mesh/source.mk b/tests/simple_mesh/source.mk deleted file mode 100644 index 748e252..0000000 --- a/tests/simple_mesh/source.mk +++ /dev/null @@ -1,18 +0,0 @@ -MESH_TEST_OBJ != ./scripts/gen-deps --sources "tests/simple_mesh/sim.c" -TEST_PROGS += build/tests/simple_mesh/sim - -build/tests/simple_mesh/test.inc: tests/simple_mesh/test.c - riscv64-unknown-elf-gcc -O2 -Wall -Wextra -ffreestanding -nostdlib \ - -march=rv64i -mabi=lp64 \ - -o build/tests/simple_mesh/test \ - tests/simple_mesh/test.c - riscv64-unknown-elf-objcopy -Obinary \ - build/tests/simple_mesh/test \ - build/tests/simple_mesh/test.bin - xxd -i build/tests/simple_mesh/test.bin \ - > build/tests/simple_mesh/test.inc - -build/tests/simple_mesh/sim.o: build/tests/simple_mesh/test.inc - -build/tests/simple_mesh/sim: $(MESH_TEST_OBJ) $(OBJS) - $(COMPILE) $(MESH_TEST_OBJ) $(OBJS) -o $@ -- cgit v1.3