16 lines
605 B
C
16 lines
605 B
C
/**
|
|
* @file app_hart_user_standard.h
|
|
* @author xxx
|
|
* @date 2024-08-06 08:22:30
|
|
* @brief HART扩展协议(国标)
|
|
* @copyright Copyright (c) 2024 by xxx, All Rights Reserved.
|
|
*/
|
|
#ifndef __APP_HART_USER_STANDARD_H
|
|
#define __APP_HART_USER_STANDARD_H
|
|
#include "lib.h"
|
|
#include "hart.h"
|
|
#include "hart_frame.h"
|
|
#include "hart_frame_user.h"
|
|
extern BOOL hart_user_standard_handle(hart_interface_user_event_e event, const void *const data); ///< HART user standard event handler
|
|
#endif // __APP_HART_USER_STANDARD_H
|