To reproduce the issue, launch a SigGen component. Plot the output port using the IDE or explorer. Change xfer_len property of the SigGen component to a value > 16000. The plot stops working. I am still able to snapshot data. I am using R 1.9.0. Is this a known issue?
问问题
122 次
2 回答
0
在 Redhawk 1.9.0(与 1.8 系列相比)中,IDE 的绘图默认设置为非阻塞。这会导致 IDE 丢弃比绘制速度更快的数据。如果您需要绘制非常大的数据推送,您可以更改此行为:
- 选择绘图的视图菜单(绘图视图右上角附近的向下三角形)
- 选择“调整绘图设置”
- 在对话框中,将blocking设置为true
于 2014-05-19T15:39:34.003 回答
0
您是否修改了giopMaxMsgSize
/etc/omniOrb.cfg 中的参数?您可以将默认值从 2097152(2 兆字节)增加到 10485760(10 兆字节)。如果您在 CentOS 上工作,则无法在 omniOrb.cfg 中包含此行,那么您可以添加以下行:
giopMaxMsgSize = 10485760
通常,像这样的错误后跟 CORBA::MARSHAL 错误
于 2014-04-10T10:40:47.597 回答