Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

help with tms320c6455 dsk

Status
Not open for further replies.

elaphece

Newbie level 3
Joined
Apr 8, 2011
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
IRAQ
Activity points
1,310
hi ;
i have wrote a simple program in c and write the cmd file
the c file is
#include<stdio.h>
void main()
{
int i;
for(i=0;i<10;i++)
{
printf("I=%d",i);
}
}
the cmd file is
MEMORY
{
IRAM: O=0X00000000 L=0X00080000
}
SECTIONS
{
.cinit > IRAM

.text > IRAM

.stack > IRAM

.bss > IRAM

.const > IRAM

.data > IRAM

. far > IRAM

.switch > IRAM

.sysmem> IRAM

.tables > IRAM

.cio > IRAM
}
when build the program the is no error and when load it no error but when run there is no value appear on the screen and
in the section messages the is the following message

loader : one or more sections of your program falls into memory region that is not writable .these regions not actually be written to the target . check your linker configuration and /or memory map

Trouble writing register : error 0x00000006/-1176 error during : memory , registor , the IM memory request is not servied by the HW memory system. this could be caused by the memory address specified does not exist in the spcified memory cache level . sequence ID : 6 error code : -1176 error class 0x00000006
i am using the ccs v3.3
my regards
 

In your cmd file you must assign the -heap and -stack size. Not sure about 6455 but some generic values can be
-heap 400
-stack 2000
Change these number until it works
 

thanx for replay the stack is -400 but the heap i will try to change it
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top