• Program works correctly in debugger only when i have a breakpoint set?!?!?!
    Im using the RTX51 Tiny RTOS Ok, here is my problem. Ive been pulling my fair out trying to figure this out. I have a program that recieves 2 bytes from the uart, and sends a 5 byte word back as a responce...
  • Program works correctly in debugger only when i have a breakpoint set?!?!?!
    Im using the RTX51 Tiny RTOS Ok, here is my problem. Ive been pulling my fair out trying to figure this out. I have a program that recieves 2 bytes from the uart, and sends a 5 byte word back as a responce...
  • Different memtype order necessary?
    Hi I'd like to put a struct typedef struct { U32 a; U8 b[8]; U8 c; } MyType; ... MyType xdata *pMyVar; in XRAM to a particular address section that starts at 0x1000. Therefore...
  • Different memtype order necessary?
    Hi I'd like to put a struct typedef struct { U32 a; U8 b[8]; U8 c; } MyType; ... MyType xdata *pMyVar; in XRAM to a particular address section that starts at 0x1000. Therefore...
  • Does debugger show far * variables correctly?
    Using v6.22, in Dallas Contiguous mode, I created the following simple program: #include <absacc.h> void main(void) { unsigned char far *a; unsigned char far *b; a = FARRAY(unsigned char, 0x7FEDC...