![]() |
stupid Array error: Error [1300] stack frame too l
It is choking on this declaration: `int table[255];`
I'm making it a lookup table. |
Re: stupid Array error: Error [1300] stack frame too l
rom const int table[256];
Use that instead. Also, do you actually need int's? Do you values go above 255? Using unsigned char's would be more memory efficient |
Re: stupid Array error: Error [1300] stack frame too l
Quote:
|
Re: stupid Array error: Error [1300] stack frame too l
Quote:
what does the 'rom' part of it mean? |
Re: stupid Array error: Error [1300] stack frame too l
Quote:
|
Re: stupid Array error: Error [1300] stack frame too l
The linker will only allow you to define a total of 256 bytes of global (or static) variables within any single project file. Variables are located in Data space where the values can be changed whenever you like.
If you want to create "char table[255]", it'll need to be defined in a file off by itself that doesn't have any other global or static declarations and referenced as an extern. "int table[255]" is too large to be defined anywhere but within the much larger Program space. Using the keyword "rom" forces the array to be defined in (Read Only Memory) Program space rather than the Data memory, then you can be as large as you have program space for, but the values are fixed like your code statements and cannot be assigned or changed while your program is running. You have to pre-define the array values, e.g., Code:
rom const int table[255]={1,2,3,4,...255};Also discussed in this thread. |
Re: stupid Array error: Error [1300] stack frame too l
See the appropriate sections in C18 Users Guide (see pointer in reply #45):
2.3 Storage Classes 2.4 Storage Qualifiers Quote:
I'm assuming this is in MPLab. The same thing can be done in EasyC either using the "User Code" option. See EasyC discussion in EasyC Wish List thread. Regards, DCBrown |
Re: stupid Array error: Error [1300] stack frame too l
Quote:
|
| All times are GMT -5. The time now is 11:32. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi