From 46aa60746741550dce8da956353f769eb96758a1 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Thu, 13 Feb 2020 15:52:34 -0500 Subject: [PATCH] feat(write_module_memory): support gen2 magdecks and tempdecks (#111) These will save their model version as 20 to fit with how we do the rest of the models (e.g. 1.5) and avoid firmware refactors --- eepromWriter/write_module_memory.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eepromWriter/write_module_memory.py b/eepromWriter/write_module_memory.py index 1a0604925..21c4c5714 100644 --- a/eepromWriter/write_module_memory.py +++ b/eepromWriter/write_module_memory.py @@ -28,7 +28,10 @@ 'TDV03': 'temp_deck_v3.0', # this model has the new fans with pcb fan_v4 'TDV04': 'temp_deck_v4.0', # this model has the new fans with pcb fan_v4.1 'TDV15': 'temp_deck_v15', # koozie + pwm fans + 'TDV20': 'temp_deck_v20', # koozie + fans + actual rebranding 'MDV01': 'mag_deck_v1.1' + 'MDV01': 'mag_deck_v1.1', + 'MDV20': 'mag_deck_v20' } DIR_NAME = os.path.dirname(os.path.realpath(__file__))