diff --git a/docs/ServiceList.md b/docs/ServiceList.md
index fb3b681..a1e2a3d 100644
--- a/docs/ServiceList.md
+++ b/docs/ServiceList.md
@@ -428,7 +428,7 @@ The pre-defined constant expressions for enumerated Characteristics are in names
| Characteristic | Format | Perms | Min | Max | Constants/Defaults |
Active (B0) :small_blue_diamond:- indicates if the Service is active/on
| uint8 | PW+PR+EV | 0 | 1 | - INACTIVE (0) :heavy_check_mark:
- ACTIVE (1)
|
ActiveIdentifier (E7) - numerical Identifier of the InputSource selected in the Home App.
| uint32 | PW+PR+EV | 0 | 255 | 0 |
-DisplayOrder (136) - specifies the order in which the TV inputs are displayed for selection in the Home App
| tlv8 | PR+EV | 0 | 1 | "" |
+DisplayOrder (136) - specifies the order in which the TV inputs are displayed for selection in the Home App
| tlv8 | PR+EV | - | - | NULL_TLV |
RemoteKey (E1) - triggers an update when the corresponding key is pressed in the Remote Control widget on an iPhone
| uint8 | PW | 4 | 15 | - UP (4)
- DOWN (5)
- LEFT (6)
- RIGHT (7)
- CENTER (8)
- BACK (9)
- PLAY_PAUSE (11)
- INFO (15)
|
PowerModeSelection (DF) - when defined, creates a "View TV Settings" button in the Home App that triggers an update to this Characteristic when pressed
| uint8 | PW | 0 | 0 | |
ConfiguredName (E3) - default display name of this Service
| string | PW+PR+EV | - | - | "unnamed" |
diff --git a/src/src.ino b/src/src.ino
index 16da73d..ca921a9 100644
--- a/src/src.ino
+++ b/src/src.ino
@@ -30,7 +30,7 @@
CUSTOM_CHAR(TestChar,3F4F,PR+PW,UINT8,20,0,100,false)
CUSTOM_CHAR_STRING(TestString,3F45,PR+EV,"Hello");
-CUSTOM_CHAR_TLV8(TestTLV,4F45,PW+PR);
+CUSTOM_CHAR_TLV8(TestTLV,45674F457,PW+PR);
CUSTOM_CHAR_DATA(TestData,303,PW+PW);
void setup() {
diff --git a/tools/makeServices b/tools/makeServices
index 8bc6c5d..a69be28 100755
--- a/tools/makeServices
+++ b/tools/makeServices
@@ -84,7 +84,7 @@ END {
printf("%s | ",format[char])
printf("%s | ",perms[char])
- if(format[char]!="string")
+ if(format[char]!="string" && format[char]!="tlv8" && format[char]!="data")
printf("%s | %s | ",min[char],max[char])
else
printf("- | - | ")