From 132fd4f9c0184be033533953cc2c7ae92da311d9 Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 20 Dec 2018 22:42:17 +0900 Subject: 8b10b encoder and decoder working Tested on all 24-bit inputs after sync and on ~500M of random input with and without intermediate sync --- fw/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'fw/Makefile') diff --git a/fw/Makefile b/fw/Makefile index 1098717..b779789 100644 --- a/fw/Makefile +++ b/fw/Makefile @@ -86,7 +86,10 @@ main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f program: main.elf openocd.cfg openocd -f openocd.cfg -c "program $< verify reset exit" -8b10b_test: 8b10b_test.c 8b10b.c +8b10b_test_encode: 8b10b_test_encode.c 8b10b.c + gcc -o $@ $^ + +8b10b_test_decode: 8b10b_test_decode.c 8b10b.c gcc -o $@ $^ clean: -- cgit