Can we use Hex as Paramaters?

Hello,

I trying to use Hex numbers as app paramaters but it’s not working out as expected… Does anyone have any ideas on what Im doing wrong?

Here is how the paramters are set in the code…

uint8 CODE param_ID_1 = 0x01;
uint8 CODE param_ID_2 = 0x02;

Here is the way it looks after loading the app in the config utility…

ID_1 = 67305985
ID_2 = -2147220734


I’m trying to enter Hex Values as paramterters in the utility…

Thanks

Tim

Hello, Tim.

If I recall correctly, the Wixel software only supports int32 parameters. Please try changing uint8 to int32.

Also: google.com/search?q=67305985%20in%20hex

–David