Patch: Toshiba T3100e

Discussion of development and patch submission.
User avatar
SarahWalker
Site Admin
Posts: 2054
Joined: Thu 24 Apr, 2014 4:18 pm

Re: Patch: Toshiba T3100e

Post by SarahWalker »

t3100e_fdd.patch doesn't build - t3100e_mono_get() is missing.
User avatar
JohnElliott
Posts: 113
Joined: Sun 31 Jan, 2016 7:29 pm

Re: Patch: Toshiba T3100e

Post by JohnElliott »

I must have missed that change. Fortunately it's very simple:

Code: Select all

--- ../../387ac.new/src/t3100e.c        2017-10-31 21:26:06.620399406 +0000
+++ t3100e.c    2017-10-28 23:52:05.471634863 +0100
@@ -362,6 +362,16 @@
        t3100e_ems.notify = value;
 }
 
+void t3100e_mono_set(uint8_t value)
+{
+       t3100e_ems.mono = value;
+}
+
+uint8_t t3100e_mono_get(void)
+{
+       return t3100e_ems.mono;
+}
+
 
 void t3100e_turbo_set(uint8_t value)
 {

User avatar
JohnElliott
Posts: 113
Joined: Sun 31 Jan, 2016 7:29 pm

Re: Patch: Toshiba T3100e

Post by JohnElliott »

Did you want me to create a revised t3100e_fdd.patch for this issue?
User avatar
SarahWalker
Site Admin
Posts: 2054
Joined: Thu 24 Apr, 2014 4:18 pm

Re: Patch: Toshiba T3100e

Post by SarahWalker »

Sorry for the delay! Committed at rev 933.
Post Reply