24 lines
851 B
C
24 lines
851 B
C
/********************************************************************
|
|
* Copyright (c) 2020 Kneron, Inc. All Rights Reserved.
|
|
*
|
|
* The information contained herein is property of Kneron, Inc.
|
|
* Terms and conditions of usage are described in detail in Kneron
|
|
* STANDARD SOFTWARE LICENSE AGREEMENT.
|
|
*
|
|
* Licensees are granted free, non-transferable use of the information.
|
|
* NO WARRANTY of ANY KIND is provided. This heading must NOT be removed
|
|
* from the file.
|
|
********************************************************************/
|
|
|
|
#ifndef __KDEV_STATUS_H__
|
|
#define __KDEV_STATUS_H__
|
|
|
|
#include <stdbool.h> // for type 'bool', ture and false.
|
|
typedef enum
|
|
{
|
|
KDEV_STATUS_OK = 0, /**< driver status OK */
|
|
KDEV_STATUS_ERROR, /**< driver status error */
|
|
} kdev_status_t;
|
|
|
|
#endif /* __KDEV_STATUS_H__ */
|