You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Date and time, ASCII string in ISO format - This is a change from the original format: YYYYMMDDxHHMMSSxxx with 0 for every 'x' value, which was not TZ friendly, and I found no references to
107
+
// Date and time, ASCII string in Apple /// SOS format: YYYYMMDD0HHMMSS000
data_buffer[sosTime.size()] = '\0'; // this is a string in a buffer, we will null terminate it (this is also a change to the original that sent the char bytes without a null)
111
+
data_len = sosTime.size() + 1; // and ensure the size reflects the null terminator
data_buffer[utcTime.size()] = '\0'; // this is a string in a buffer, we will null terminate it (this is also a change to the original that sent the char bytes without a null)
0 commit comments