We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am using 5.20 if it matters I have a function that is indirectly called from an array of functions. This function is contained in its own module. When I link, I get the following warning:
WARNING 16: Uncalled Segment, ignored for overlay process segment: ?CO?FACT_CON
static float code ideal_values[LAST_POINT] ={
To ensure vars. are placed in code memory you must define them with the code memory space qualifier. Your definition should absolutely be written as: static const float code ideal_values[LAST_POINT]; This was one of the several incantations I tried, and I still get the warning. It was also suggested to make sure that variable was used in the function call, and it is. Another suggestion was to place this directly in the function that uses it (since the file only has one function in it, it is ONLY used by one function, and can go inside that function), but I haven't tried this yet. Anyone else have an idea?
static const float code ideal_values[LAST_POINT];