manually adding lookups and using pragma
added to custom global variables:
#pragma DATA_SECTION(v, "lookup");
float v = 10;
works
try
#pragma DATA_SECTION(IaLookup, "lookup");
int16 IaLookup[] = { 0, 0, 1, 1, -1, -1, 0 };
motor turns but does not write to memory (or maybe it does) see watch window
add ib and ic
#pragma DATA_SECTION(IaLookup, "lookup");
int16 IaLookup[] = { 0, 0, 1, 1, -1, -1, 0 };
#pragma DATA_SECTION(IbLookup, "lookup");
int16 IbLookup[] = { 0, -1, 0, -1, 1, 0, 1 };
#pragma DATA_SECTION(IcLookup, "lookup");
int16 IcLookup[] = { 0, 1, -1, 0, 0, 1, -1 };
now try to change the code which references this stuff
works - thank bloody hell!!
try to make the generation a bit easier.
does not work trying to set IaLookup = afm_060601_P.Ia_lookup_table
0 Comments:
Post a Comment
<< Home