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
Hi, I'm trying to read 2 arrays in different daq lists, one signal is of size 784 and the other is of size 17, but I'm getting this reinit daq not implemented pre-action, is this some missing functionality or is there something wrong with my setup? I don't get an error if I do the whole setup 2 times rather than creating 2 daq lists.
Can't show much but, measurements contain the tuples for each index for both signals.
[2025-01-31 14:21:15,497][ERROR] - Traceback (most recent call last): File ".vscode/debug_pyxcp_daqlists.py", line 60, in <module> daq_parser.setup() # Execute setup procedures. File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/daq_stim/__init__.py", line 109, in setup self.xcp_master.allocOdt(i, odt_count) File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/master/errorhandler.py", line 431, in inner res = executor(inst, func, arguments) File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/master/errorhandler.py", line 392, in __call__ preActions, actions, repeater = handler.actions(*getActions(inst.service, self.error_code)) File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/master/errorhandler.py", line 255, in actions raise NotImplementedError("Pre-action REINIT_DAQ") NotImplementedError: Pre-action REINIT_DAQ
The text was updated successfully, but these errors were encountered:
The REINIT_DAQ is an XCP errorhandling pre-preaction and because there is currently no implementation for this situation, an NotImplementedError exception is raised...
In other words, the root cause is obfuscated: the offending service is ALLOC_ODT and accoding to the errormatrix there a two errors with pre-action REINIT_DAQ, ERR_SEQUENCE (very unlikely in this case) and ERR_MEMORY_OVERFLOW.
It seems you are hitting a memory limit.
Hi, I'm trying to read 2 arrays in different daq lists, one signal is of size 784 and the other is of size 17, but I'm getting this reinit daq not implemented pre-action, is this some missing functionality or is there something wrong with my setup? I don't get an error if I do the whole setup 2 times rather than creating 2 daq lists.
Can't show much but, measurements contain the tuples for each index for both signals.
[2025-01-31 14:21:15,497][ERROR] - Traceback (most recent call last): File ".vscode/debug_pyxcp_daqlists.py", line 60, in <module> daq_parser.setup() # Execute setup procedures. File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/daq_stim/__init__.py", line 109, in setup self.xcp_master.allocOdt(i, odt_count) File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/master/errorhandler.py", line 431, in inner res = executor(inst, func, arguments) File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/master/errorhandler.py", line 392, in __call__ preActions, actions, repeater = handler.actions(*getActions(inst.service, self.error_code)) File "/home/edista_local/mhern/xcp/venv/lib/python3.9/site-packages/pyxcp/master/errorhandler.py", line 255, in actions raise NotImplementedError("Pre-action REINIT_DAQ") NotImplementedError: Pre-action REINIT_DAQ
The text was updated successfully, but these errors were encountered: