我想将跟踪窗口中的所有数据都存储到我的文本文件中,即使日志记录也有帮助,但它无法在该文件中显示日期和时间,所以我计划复制整个跟踪窗口提交。
我试过按ctrl + a并粘贴在记事本中,但它只是复制某种区域而不是全部。
我想知道是否有机会重定向跟踪窗口的打印方式,就像我在文本文件中看到的那样,或者至少有没有办法复制整个文件并粘贴到文本文件中。
答案 0 :(得分:1)
跟踪窗口只显示数据,您可以在Measurement Setup中对其进行配置。
但请注意,这只是数据的一部分。有一个缓冲区,CANoe存储Trace窗口的数据。您可以配置此缓冲区的类型(内存或硬盘)及其大小。转到Options -> Measurement -> Data History
更改您的设置。
您还可以在那里配置可见数据范围的大小。但即使使用very long
范围和200 GB的大缓冲区,也可能会有一些数据无法使用,因为Trace可用作环形缓冲区,在溢出时删除旧数据。
如果您需要完整数据,则应启用“测量”设置中的“记录”。是的,数据文件不是人类可读的。然后,您需要在CANoe的离线模式下打开它们来分析它们。时间戳当然会被记录下来,因此您可以轻松地将它们用于分析。
答案 1 :(得分:0)
您可以使用CAPL将其打印到写入窗口:
public static DateTime GetNetworkTime() {
//default Windows time server
const string ntpServer = "time.windows.com";
// NTP message size - 16 bytes of the digest (RFC 2030)
var ntpData = new byte[48];
//Setting the Leap Indicator, Version Number and Mode values
ntpData[0] = 0x1B; //LI = 0 (no warning), VN = 3 (IPv4 only), Mode = 3 (Client Mode)
var addresses = Dns.GetHostEntry(ntpServer).AddressList;
//The UDP port number assigned to NTP is 123
var ipEndPoint = new IPEndPoint(addresses[0], 123);
//NTP uses UDP
using(var socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp))
{
socket.Connect(ipEndPoint);
//Stops code hang if NTP is blocked
socket.ReceiveTimeout = 3000;
socket.Send(ntpData);
socket.Receive(ntpData);
socket.Close();
}
//Offset to get to the "Transmit Timestamp" field (time at which the reply
//departed the server for the client, in 64-bit timestamp format."
const byte serverReplyTime = 40;
//Get the seconds part
ulong intPart = BitConverter.ToUInt32(ntpData, serverReplyTime);
//Get the seconds fraction
ulong fractPart = BitConverter.ToUInt32(ntpData, serverReplyTime + 4);
//Convert From big-endian to little-endian
intPart = SwapEndianness(intPart);
fractPart = SwapEndianness(fractPart);
var milliseconds = (intPart * 1000) + ((fractPart * 1000) / 0x100000000L);
//**UTC** time
var networkDateTime = (new DateTime(1900, 1, 1, 0, 0, 0, DateTimeKind.Utc)).AddMilliseconds((long)milliseconds);
return networkDateTime.ToLocalTime(); }
// stackoverflow.com/a/3294698/162671 static uint SwapEndianness(ulong x) {
return (uint) (((x & 0x000000ff) << 24) +
((x & 0x0000ff00) << 8) +
((x & 0x00ff0000) >> 8) +
((x & 0xff000000) >> 24)); }
然后将其导出到文件中。
或者您直接将其写入文件。