Confusion between Data_seg and code_seg

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Confusion between Data_seg and code_seg

Jump to solution
974 Views
vihaanred
Contributor III

Hi,

 

I have seen the following code and i have doubts

 

the prm file is having the following statements

 

test.prm

 

/*  commands */

PARAMETERS     INTO  PAGE_E0

/*end of prm file */

 

where the PARAMETERS is a sections having some constants and placed into the flash memory page_e0.

 

i have seen the PARAMETERS in the test.c file as

 

#pragma DATA_SEG __GPAGE_SEG    PARAMETERS    

/* PARAMETERS CONSTANTS */

#Pragma DATA_SEG DEFAULT

 

my doubt is PARAMETERS is a constant and located in the flash memory. What is th meaning of declaring it as DATA_SEG? Am i correct in assuming that the statement is not required. (May be the idea is to copy the variables from flash to ram but the statement is not required).

 

Thanks and regards,

VIhaan

Labels (1)
Tags (4)
0 Kudos
Reply
1 Solution
758 Views
ZhangJennie
NXP TechSupport
NXP TechSupport

Hi vihaan,

from my understanding, you define const data in PARAMETERS section which is paged Flash memory. Correct?

if it's true, we need to use key word CONST_SEG instead of DATA_SEG. for example:

#pragma CONST_SEG __GPAGE_SEG    PARAMETERS    

/* PARAMETERS CONSTANTS */

#Pragma CONST_SEG DEFAULT

can this help you to solve the problem?


Have a great day,
Zhang Jun

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

View solution in original post

0 Kudos
Reply
2 Replies
758 Views
vihaanred
Contributor III

yes it is correct i think it is a mistake to keep DATA_SEG

0 Kudos
Reply
759 Views
ZhangJennie
NXP TechSupport
NXP TechSupport

Hi vihaan,

from my understanding, you define const data in PARAMETERS section which is paged Flash memory. Correct?

if it's true, we need to use key word CONST_SEG instead of DATA_SEG. for example:

#pragma CONST_SEG __GPAGE_SEG    PARAMETERS    

/* PARAMETERS CONSTANTS */

#Pragma CONST_SEG DEFAULT

can this help you to solve the problem?


Have a great day,
Zhang Jun

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos
Reply