C API for BALTECH SDK
ultralight.h
Go to the documentation of this file.
1 
14 #ifndef __BRP_BALTECH_API_CMDS_ULTRALIGHT_H__
15 #define __BRP_BALTECH_API_CMDS_ULTRALIGHT_H__
16 #include "../typedefs.h"
21 #define BRP_Ultralight_ErrNoTag BRP_ERR_STATUS(0x2500, 0x01)
22 
26 #define BRP_Ultralight_ErrAuth BRP_ERR_STATUS(0x2500, 0x02)
27 
32 #define BRP_Ultralight_ErrHf BRP_ERR_STATUS(0x2500, 0x03)
33 
37 #define BRP_Ultralight_ErrKey BRP_ERR_STATUS(0x2500, 0x04)
38 
43 #define BRP_Ultralight_ErrNack BRP_ERR_STATUS(0x2500, 0x05)
44 
50 #define BRP_Ultralight_ErrInterface BRP_ERR_STATUS(0x2500, 0x18)
51 
55 #define BRP_Ultralight_ErrCmd BRP_ERR_STATUS(0x2500, 0x19)
56 
60 #define BRP_Ultralight_ErrHwNotSupported BRP_ERR_STATUS(0x2500, 0x20)
61 
65 #define BRP_Ultralight_ErrFirmwareNotSupported BRP_ERR_STATUS(0x2500, 0x21)
66 
75 #define BRP_Ultralight_BreakErr BRP_ERR_STATUS(0x2500, 0x28)
76 
88 brp_errcode brp_Ultralight_ExecCmd(brp_protocol protocol, unsigned Cmd, brp_buf Param, size_t Param_len, brp_buf* Response, size_t* Response_len, brp_mempool *mempool);
99 brp_errcode brp_Ultralight_Read(brp_protocol protocol, unsigned PageAdr, brp_buf* PageData, brp_mempool *mempool);
109 brp_errcode brp_Ultralight_Write(brp_protocol protocol, unsigned PageAdr, brp_buf PageData);
126 brp_errcode brp_Ultralight_AuthE2(brp_protocol protocol, brp_Ultralight_AuthE2_DivMode DivMode, bool HasExtIdx, unsigned KeyIdx, brp_buf DivData, size_t DivData_len, unsigned KeyExtIdx);
137 #endif
138 
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_Ultralight_Write(brp_protocol protocol, unsigned PageAdr, brp_buf PageData)
brp_Ultralight_AuthE2_DivMode
Definition: typedefs.h:2448
brp_errcode brp_Ultralight_Read(brp_protocol protocol, unsigned PageAdr, brp_buf *PageData, brp_mempool *mempool)
struct brp_mempool_object_t * brp_mempool
mempool handle.
Definition: mempool.h:27
brp_errcode brp_Ultralight_ExecCmd(brp_protocol protocol, unsigned Cmd, brp_buf Param, size_t Param_len, brp_buf *Response, size_t *Response_len, brp_mempool *mempool)
brp_errcode brp_Ultralight_AuthUser(brp_protocol protocol, brp_Ultralight_AuthUser_CryptoMode CryptoMode, brp_buf Key, size_t Key_len)
brp_Ultralight_AuthUser_CryptoMode
Definition: typedefs.h:2471
brp_errcode brp_Ultralight_AuthE2(brp_protocol protocol, brp_Ultralight_AuthE2_DivMode DivMode, bool HasExtIdx, unsigned KeyIdx, brp_buf DivData, size_t DivData_len, unsigned KeyExtIdx)
unsigned char * brp_buf
represents a pointer to a protocol data buffer.
Definition: common.h:61