2005-11-01 08:34 PM
2005-10-31 03:55 AM
in order to hold up the compatibility to our old bootloader we need to fix the adress of the following structure to 0xbb (UZPAGE). And the linker should reserve this adress only for THIS single structure!
@tiny struct { unsigned char EnableIAP:1; unsigned char IAPBusy:1; unsigned char ChangeBaudrate:1; unsigned char KeyboardOff:1; } ucIapStatus; is this possible?2005-11-01 08:34 PM
struct
{ unsigned char EnableIAP:1; unsigned char IAPBusy:1; unsigned char ChangeBaudrate:1; unsigned char KeyboardOff:1; } ucIapStatus @0xbb; should do what you ask. Regards, Luca (Cosmic)