Home | History | Annotate | Download | only in whisper
      1 // Copyright (c) 2010, Atmel Corporation.
      2 // All rights reserved.
      3 //
      4 // Redistribution and use in source and binary forms, with or without
      5 // modification, are permitted provided that the following conditions are met:
      6 //     * Redistributions of source code must retain the above copyright
      7 //       notice, this list of conditions and the following disclaimer.
      8 //     * Redistributions in binary form must reproduce the above copyright
      9 //       notice, this list of conditions and the following disclaimer in the
     10 //       documentation and/or other materials provided with the distribution.
     11 //     * Neither the name of Atmel nor the
     12 //       names of its contributors may be used to endorse or promote products
     13 //       derived from this software without specific prior written permission.
     14 //
     15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
     16 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     17 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
     19 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     20 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     21 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     22 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     24 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25 
     26 #ifndef SHA_STATUS_H
     27 #define SHA_STATUS_H
     28 
     29 #include <stdint.h>         // C99 standard typedefs
     30 
     31 #define SHA_SUCCESS             (int8_t)  0x00 //!< Function succeeded. Device status, if available, was okay.
     32 #define SHA_GEN_FAIL            (int8_t)  0xD0 //!< unspecified error
     33 #define SHA_BAD_PARAM           (int8_t)  0xD1 //!< bad argument (out of range, null pointer, etc.)
     34 #define SHA_PARSE_ERROR         (int8_t)  0xD2 //!< response status byte indicates parsing error
     35 #define SHA_CMD_FAIL            (int8_t)  0xD3 //!< response status byte indicates command execution error
     36 #define SHA_STATUS_UNKNOWN      (int8_t)  0xD4 //!< response status byte is unknown
     37 #define SHA_FUNC_FAIL           (int8_t)  0xE0 //!< Function could not execute due to incorrect condition / state.
     38 #define SHA_COMM_FAIL           (int8_t)  0xF0 //!< Communication with device failed.
     39 #define SHA_TIMEOUT             (int8_t)  0xF1 //!< Timed out while waiting for response.
     40 #define SHA_BAD_SIZE            (int8_t)  0xF2 //!< Size value in response was different than expected.
     41 #define SHA_HW_FAIL             (int8_t)  0xF3 //!< Hardware failure, for instance setting up a timer or port.
     42 #define SHA_INVALID_ID          (int8_t)  0xF4 //!< invalid device id, id not set
     43 #define SHA_INVALID_SIZE        (int8_t)  0xF5 //!< Could not copy response because receive buffer was too small.
     44 #define SHA_BAD_CRC             (int8_t)  0xF6 //!< incorrect CRC received
     45 
     46 #endif
     47