OSDN Git Service

Added a new project.
[bluetank/bluetank.git] / firm / bare_metal / fft_simple_speana / README.TXT
1 Q. Did you find this message when the firmware compiled?
2
3   obj/bluetank.elf section `.text' will not fit in region `MEM_L1_CODE'
4
5 A. Please fix the linker script for BF592!
6
7   /opt/uClinux2011R1RC4/bfin-elf/bfin-elf/lib/bf592.ld
8
9   (Wrong codes)
10     MEM_L1_CODE : ORIGIN = 0xFFA00000, LENGTH = 0x4000
11     MEM_L1_CODE_CACHE : ORIGIN = 0xFFA04000, LENGTH = 0x4000
12
13   (Correct codes)
14     MEM_L1_CODE : ORIGIN = 0xFFA00000, LENGTH = 0x8000
15
16   BF592 doesn't have any cache.
17   MEM_L1_CODE_CACHE is wrong.