Jul 13, 2021
02:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 13, 2021
02:24 AM
Hi!
Today I'm coding on ads for MCU tc212 but I don't understand this error code ltc E112.It's really confusing.
Is that means requiring too much data space? And how can I adjust?
Thanks!
Here's the details:
ltc E112: cannot locate 38 section(s):...(too long...)
ltc I455: requirement: 34K (0x891d) bytes of RAM area in space mpe:vtc:linear
ltc I456: section type: range restriction - range(s) 0x70000000-0x7000c000
ltc I456: section type: group restriction - contiguous
ltc I457: .data.Cpu0_Main.image (7) (0x1608 bytes)
.etc
Today I'm coding on ads for MCU tc212 but I don't understand this error code ltc E112.It's really confusing.
Is that means requiring too much data space? And how can I adjust?
Thanks!
Here's the details:
ltc E112: cannot locate 38 section(s):...(too long...)
ltc I455: requirement: 34K (0x891d) bytes of RAM area in space mpe:vtc:linear
ltc I456: section type: range restriction - range(s) 0x70000000-0x7000c000
ltc I456: section type: group restriction - contiguous
ltc I457: .data.Cpu0_Main.image (7) (0x1608 bytes)
.etc
Solved! Go to Solution.
- Tags:
- aurix forum
- IFX
1 Solution
Jul 14, 2021
05:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 14, 2021
05:54 AM
Data flash will not be used for variable, because the data flash is no RAM. What you can put in data flash are e.g. constants.
I expect that your temporary arrays are too big. The RAM is used also for STACK, CSA and soon.
I expect that your temporary arrays are too big. The RAM is used also for STACK, CSA and soon.
4 Replies
Jul 13, 2021
03:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 13, 2021
03:41 AM
There is not sufficient ram memory available for your program. You use big arrays which are consuming big portions of the ram?
Jul 13, 2021
03:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 13, 2021
03:51 AM
yeah I'm using them for photo dealing. They are temporary arrays
Jul 13, 2021
04:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 13, 2021
04:07 AM
And what confused me most is that tc212 have 64 Kbyte data flash. So this means not all of them can be used by user?
Jul 14, 2021
05:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 14, 2021
05:54 AM
Data flash will not be used for variable, because the data flash is no RAM. What you can put in data flash are e.g. constants.
I expect that your temporary arrays are too big. The RAM is used also for STACK, CSA and soon.
I expect that your temporary arrays are too big. The RAM is used also for STACK, CSA and soon.
This widget could not be displayed.