Keil Logo

C51: Warning 259 (Pointer: Different Mspace)


Information in this article applies to:

  • C51

QUESTION

I have a pointer that points to a variable in xdata and I am reassigning it to point to a variable in idata. The compiler is giving me:

WARNING 259: POINTER: DIFFERENT MSPACE

ANSWER

When you reassign a pointer to point to different memory space, you must cast the address of the variable to the memory space of the pointer. When you then wish to alter the variable via the pointer, you must cast the pointer to the memory space of the variable. For example:

unsigned char idata bar = 2;
unsigned char xdata *ptr;

ptr = (unsigned char xdata *) &bar;
*(unsigned char idata *)ptr = 3;    // bar = 3

MORE INFORMATION


Last Reviewed: Thursday, February 25, 2021


Did this article provide the answer you needed?
 
Yes
No
Not Sure
 
  Arm logo
Important information

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.

Change Settings

Privacy Policy Update

Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.