C API for BALTECH SDK
ask.h
Go to the documentation of this file.
1 
11 #ifndef __BRP_BALTECH_API_CMDS_ASK_H__
12 #define __BRP_BALTECH_API_CMDS_ASK_H__
13 #include "../typedefs.h"
18 #define BRP_ASK_ErrAskNoTag BRP_ERR_STATUS(0x3600, 0x01)
19 
23 #define BRP_ASK_ErrAskRxdata BRP_ERR_STATUS(0x3600, 0x03)
24 
28 #define BRP_ASK_ErrAskParity BRP_ERR_STATUS(0x3600, 0x05)
29 
33 #define BRP_ASK_ErrAskParam BRP_ERR_STATUS(0x3600, 0x07)
34 
38 #define BRP_ASK_ErrAskHfreqctrl BRP_ERR_STATUS(0x3600, 0x08)
39 
43 #define BRP_ASK_ErrAskHw BRP_ERR_STATUS(0x3600, 0x09)
44 
48 #define BRP_ASK_ErrAskHwNotSupported BRP_ERR_STATUS(0x3600, 0x0B)
49 
58 brp_errcode brp_ASK_SecuraKeyRead(brp_protocol protocol, brp_buf* Data, size_t* Data_len, brp_mempool *mempool);
68 brp_errcode brp_ASK_GproxRead(brp_protocol protocol, brp_buf* Data, size_t* Data_len, brp_mempool *mempool);
78 brp_errcode brp_ASK_CotagRead(brp_protocol protocol, brp_buf* Data, size_t* Data_len, brp_mempool *mempool);
79 #endif
80 
unsigned int brp_errcode
This type is used library-wide for passing error codes in the return value of functions.
Definition: errorcodes.h:23
struct brp_protocol_t * brp_protocol
This is a generic handle of a protocol.
Definition: protocol.h:34
brp_errcode brp_ASK_SecuraKeyRead(brp_protocol protocol, brp_buf *Data, size_t *Data_len, brp_mempool *mempool)
struct brp_mempool_object_t * brp_mempool
mempool handle.
Definition: mempool.h:27
brp_errcode brp_ASK_CotagRead(brp_protocol protocol, brp_buf *Data, size_t *Data_len, brp_mempool *mempool)
brp_errcode brp_ASK_GproxRead(brp_protocol protocol, brp_buf *Data, size_t *Data_len, brp_mempool *mempool)
unsigned char * brp_buf
represents a pointer to a protocol data buffer.
Definition: common.h:61