aboutsummaryrefslogtreecommitdiffhomepage
path: root/Bootup Logo
diff options
context:
space:
mode:
authorBen V. Brown <[email protected]>2017-12-21 23:34:57 +1100
committerBen V. Brown <[email protected]>2017-12-21 23:34:57 +1100
commit90c0bf9683a244edffec2e8fc29b8e09458aa050 (patch)
tree59f416dfac2b1e05bbbf21dda5578a3d6922f962 /Bootup Logo
parent1bc62adc6c76c45146403f1f46fe5414f889be71 (diff)
downloadIronOS-90c0bf9683a244edffec2e8fc29b8e09458aa050.tar.gz
IronOS-90c0bf9683a244edffec2e8fc29b8e09458aa050.zip
Fix GUI storage address (same as settings bug)
Diffstat (limited to 'Bootup Logo')
-rw-r--r--Bootup Logo/Logo GUI/TS100 Logo Editor/TS100 Logo Editor/Form1.cs2
-rw-r--r--Bootup Logo/python_logo_converter/img2ts100.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Bootup Logo/Logo GUI/TS100 Logo Editor/TS100 Logo Editor/Form1.cs b/Bootup Logo/Logo GUI/TS100 Logo Editor/TS100 Logo Editor/Form1.cs
index 5067c509..9f458e9a 100644
--- a/Bootup Logo/Logo GUI/TS100 Logo Editor/TS100 Logo Editor/Form1.cs
+++ b/Bootup Logo/Logo GUI/TS100 Logo Editor/TS100 Logo Editor/Form1.cs
@@ -148,7 +148,7 @@ namespace TS100_Logo_Editor
data[i] = data[i + 1];
data[i + 1] = temp;
}
- string outputHexFile = IntelHex.IntelHex.encode(data, 0x0800B800, 16, true, true);//16 bytes is the only format the DFU seems to support //0x0800B800
+ string outputHexFile = IntelHex.IntelHex.encode(data, 0x0800F800, 16, true, true);//16 bytes is the only format the DFU seems to support //0x0800B800
//^ This string now just needs to be written out to a text file :)
SaveFileDialog dlg = new SaveFileDialog();
dlg.Title = "Save DFU File";
diff --git a/Bootup Logo/python_logo_converter/img2ts100.py b/Bootup Logo/python_logo_converter/img2ts100.py
index a5d218d6..075938a0 100644
--- a/Bootup Logo/python_logo_converter/img2ts100.py
+++ b/Bootup Logo/python_logo_converter/img2ts100.py
@@ -158,7 +158,7 @@ def img2hex(input_filename,
# store in endian-reversed byte order
data[4 + ndx + (1 if ndx % 2 == 0 else -1)] = byte
- intel_hex(output_file, data, 0x0800B800)
+ intel_hex(output_file, data, 0x0800F800)
def parse_commandline():