A
AMP
I have a statement:
if ((error = bslTxRx(BSL_MERAS, /* Command: Mass Erase */
0xff00, /* Any address within flash memory. */
0xa506, /* Required setting for mass erase! */
null, blkin)) != ERR_NONE)
The Return Statement from bslTxRx is:
return (ERR_NONE);
FYI:
ERR_NONE=0
But "error" comes back as 1.
There are no errors, as this return statment gets fired.
Of Course I'm doing something wrong, but what?
Thanks
Mike
if ((error = bslTxRx(BSL_MERAS, /* Command: Mass Erase */
0xff00, /* Any address within flash memory. */
0xa506, /* Required setting for mass erase! */
null, blkin)) != ERR_NONE)
The Return Statement from bslTxRx is:
return (ERR_NONE);
FYI:
ERR_NONE=0
But "error" comes back as 1.
There are no errors, as this return statment gets fired.
Of Course I'm doing something wrong, but what?
Thanks
Mike