Variable naming in SBC mode firmware 3.3
-
Hi,
I was testing some code that worked fine in SD mode (no SBC) and cannot get it to work in SBC mode on a MB6HC, firmware 3.3 in all cases.
The problem seems to involve variable naming.
This is an example of one that worked in SD mode:
global g_z_home = 5;
In SBC mode it seems those underscore characters are causing an error Error: expected '='
Removing the underscore characters and the following works fine:
global gzhome = 5;
Thanks.
Frederick
-
@fcwilt Thanks for reporting this, I can confirm underscores aren't supported in SBC mode. I'll fix this in the next versions.