• Making a FAR pointer
    Hi all, I have the following: u8_t far * ptr; u8_t buf[10]; and on positions 1,2,3 (buf) I have the FAR address (3 bytes) that I want to use: *ptr = 1; // for instance; How can I give ptr...
  • Using far or huge pointer, which is faster?
    I have an array defined in RAM. The array is defined 40 bytes. I do interpolation on the array by passing the address of the array as a huge pointer to int to the interpolation function. For the C167CS...
  • huge to far
    Hello, I think I finally found a Problem which caused me Trouble over the past Days, and now I'm trying to find a satisfying solution. I'm using an Infineon XC161CJ with a grapical Display. I use...
  • About far,near pointer in Keil
    I try to compile ucOSII in keil C51. But it tells me a error at struct os_event { UBYTE OSEventGrp; /* Group corresponding to tasks waiting for event to occur */ UBYTE OSEventTbl[8]; /* List of...
  • problem with character pointer
    Hello, 1) I am declaring a pointer to a string as Xdata Unsigned char *sTemperature [4] = {"NIL","25 ","30 ","37 "}; This is shown in the .lst file as a array occupying only 12 bytes where as it...