-
Cosmos 4.5.0 Hi, we have installed Postgresql and installed Dart per install We are attempting to use our target timestamp by following this article: This is the telemetry definition header we are using:
Upon startup we get some warnings in log about PACKET_TIME not being supported by DART. The warning messages don't seem to be persistent. Telemetry screens seem to be showing correct timestamps. Is this to be expected? Will Dart still be using the derived timestamp? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I assume you're talking about this message:
This is due to using the UnixTimeConversion. Apparently we did not set the Thanks for raising this issue as the core COSMOS classes should support this feature. We've been focused on COSMOS 5 for quite some time so I'm not sure when we will get around to addressing this but you can subclass UnixTimeConversion and add the |
Beta Was this translation helpful? Give feedback.
I assume you're talking about this message:
This is due to using the UnixTimeConversion. Apparently we did not set the
converted_type
orconverted_bit_size
in that class which would have prevented this warning. This concept is explained in the Derived Items post.Thanks for raising this issue as the core COSMOS classes should support this feature. We've been focused on COSMOS 5 for quite some time so I'm not sure when we will get around to addressing this but you can subclass UnixTimeConversion and add the
converted_type
andconv…