From 37e220afe6736aae3991e31b1bd0abdce8307b12 Mon Sep 17 00:00:00 2001 From: Rob Riggs Date: Sun, 20 Oct 2019 15:31:07 -0500 Subject: [PATCH] Add missing header when building BM78 eeprom source file. --- make_bm78_eeprom_c.py | 1 + 1 file changed, 1 insertion(+) diff --git a/make_bm78_eeprom_c.py b/make_bm78_eeprom_c.py index 8bbe21f..06af2ac 100755 --- a/make_bm78_eeprom_c.py +++ b/make_bm78_eeprom_c.py @@ -16,6 +16,7 @@ for line in sys.stdin: chunks = [bytes[i:i+8] for i in range(0, len(bytes), 8)] +print("#include \"bm78_eeprom.h\"") print("#include ") print("const uint8_t eeprom_data[] = {") for chunk in chunks: