KL520_SDK_2.2/mdw/include/kmdw_status.h
2025-12-17 15:55:25 +08:00

22 lines
430 B
C

/**
* @file kmdw_status.h
* @brief status code
*
* @copyright Copyright (c) 2020 Kneron Inc. All rights reserved.
*/
#ifndef __KMDW_STATUS_H__
#define __KMDW_STATUS_H__
/**
* @brief enum for status code
*/
typedef enum
{
KMDW_STATUS_OK = 0, /**< mdw status OK */
KMDW_STATUS_ERROR, /**< mdw status error */
} kmdw_status_t;
#endif /* __KMDW_STATUS_H__ */