I am trying to create a custom module. When I try to run the module in a signal flow I get the following error:
'Server Command Failure:
Command set to server: 0,create_module,Phoenix4_axisSB__PhoenixCore__AxisSB_module__AXISSB1,ModuleaxisSB,2,2,0,wire11,wire16,wire16,wire21,wire22
Server response: failed, transmit error 0xfffd8f1
The server is obviously not happy with my new module. Can you give me some pointers on how to debug this?
2:43pm
Hi Darrel! The error you are seeing is indicative of the target crashing while constructing your module - try looking over the constructor function carefully to make sure you are not accessing any null pointers or pointing outside the bounds of the array.
At this point, there is no official debug hook for Custom Modules. However, here are some options...
Thanks!