I am writing a HomeKit feature (possibly Bluetooth) in TLV8 format. Apple doc says
A value is an NSData object that contains a set of one or more TLV8s that are packed types of length values with an 8-bit type, 8-bit length, and N-byte value.
According to Wikipeida string length value
A typeA binary code, often simply alphanumeric, that indicates the kind of field that this part of the message represents;LengthSize of the value field (usually in bytes);ValueA series of variable size bytes that contain data for this part of the message.
A type
A binary code, often simply alphanumeric, that indicates the kind of field that this part of the message represents;
Length
Size of the value field (usually in bytes);
Value
A series of variable size bytes that contain data for this part of the message.
I do not know how to pack it. I suppose I can write raw bytes in NSData, but what do I write for the pad if I need any padding, etc. So, is there an example of how to do this?
, . TLV8 : "Tag", "Length" "Value". , 8.
- UInt8. , , TLV8. - . - .
, 1 , :
let tag = 0x02 // For example let length = 0x01 let value = 0x01 let data = Data(bytes: [tag, length, value]) // NSData
Source: https://habr.com/ru/post/1017380/More articles:Xamarin Studio: перестроить ошибку проекта с ошибкой: параметр "DebugType" не поддерживается задачей "XamlCTask" - xmlRead the CSV line in Kotlin - androidReact Native: npm link local dependency, unable to resolve module - npmUsing HttpCookie to timeout / url - angularjsкак обновить с python 3.5 до 3.6 - pythonHow to use Google Translate in Matlab? - matlabWhy is the spark-shell failure with "" "C: \ Program" not recognized as an internal or external command "on Windows? - windowshttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1017383/linkedin-api-refresh-access-token-may-2017&usg=ALkJrhjl1wjFrrje31NpRDpIyHTsUXmFBwKibana closes HTTP connection after 120 seconds - kibanaПочему искровая оболочка терпит неудачу с "неожиданностью в это время"? - environment-variablesAll Articles