diff --git a/docs/ServiceList.md b/docs/ServiceList.md
index abff6e9..fb3b681 100644
--- a/docs/ServiceList.md
+++ b/docs/ServiceList.md
@@ -428,6 +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 | "" |
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/tools/makeServices b/tools/makeServices
index 279262b..8bc6c5d 100755
--- a/tools/makeServices
+++ b/tools/makeServices
@@ -54,6 +54,8 @@ BEGIN {
uuid[char]=x[3]
perms[char]=x[4]
format[char]=tolower(x[5])
+ if(format[char]=="tlv_enc")
+ format[char]="tlv8"
static[char]=x[6]
}