Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/MnBdGetErrMsg


Ignore:
Timestamp:
08/20/10 14:08:36 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/MnBdGetErrMsg

    v1 v1  
     1= MnBdGetErrMsg =
     2Get current error message.
     3
     4{{{
     5const char* MnBdGetErrMsg(void);
     6}}}
     7
     8== Parameters ==
     9
     10Function does not accept any parameters
     11
     12== Return Value ==
     13
     14 * Returns the error message, such as "MOTION", "OUT OF RANGE", "CRC error", "Unrecognized command", "Specified scale not present".
     15
     16== Remarks ==
     17
     18MnBdStartup must be performed before this will return a valid result.
     19
     20== Example ==
     21
     22{{{
     23if(ZeroScale(1) != OK)
     24{
     25   string strErr = StrFmt("Zero error: %s", MnBdGetErrMsg());
     26   DisplayText(0, 0, strErr);
     27}
     28}}}
     29
     30
     31== See Also ==
     32
     33 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/MnBdGetErrStr MnBdGetErrStr]
     34