차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
ko:configuration_api [2020/02/12 14:35]
sypark1
ko:configuration_api [2020/02/13 16:25]
kkshin [BS2DesFireCardConfigEx]
줄 68: 줄 68:
   * [[BS2_GetIPV6ConfigViaUDPEx]]:​ [+ 2.6.3] IP V6 설정 정보를 UDP broadcasting를 통해 가져옵니다. (host ip 지정)   * [[BS2_GetIPV6ConfigViaUDPEx]]:​ [+ 2.6.3] IP V6 설정 정보를 UDP broadcasting를 통해 가져옵니다. (host ip 지정)
   * [[BS2_SetIPV6ConfigViaUDPEx]]:​ [+ 2.6.3] IP V6 설정 정보를 UDP broadcasting를 통해 저장합니다. (host ip 지정)   * [[BS2_SetIPV6ConfigViaUDPEx]]:​ [+ 2.6.3] IP V6 설정 정보를 UDP broadcasting를 통해 저장합니다. (host ip 지정)
 +  * [[BS2_GetDesFireConfigEx]]:​ [+ 2.6.4] DesFire 카드 설정 정보를 가져옵니다.
 +  * [[BS2_SetDesFireConfigEx]]:​ [+ 2.6.4] DesFire 카드 설정 정보를 저장합니다.
 ===== 구조체 ===== ===== 구조체 =====
 ==== BS2FactoryConfig ==== ==== BS2FactoryConfig ====
줄 1881: 줄 1883:
 16. //​allocatedGatewayV6//​ \\  16. //​allocatedGatewayV6//​ \\ 
 현재 장치에 할당되어진 IP V6 게이트웨이 주소입니다. numOfAllocatedGatewayV6는 할당되어진 게이트웨이 주소의 갯수를 나타냅니다.\\ 현재 장치에 할당되어진 IP V6 게이트웨이 주소입니다. numOfAllocatedGatewayV6는 할당되어진 게이트웨이 주소의 갯수를 나타냅니다.\\
 +\\
 +
 +==== BS2DesFireCardConfigEx ====
 +<code cpp>
 +typedef struct {
 +    uint8_t appMasterKey[16];​
 +    uint8_t fileReadKey[16];​
 +    uint8_t fileWriteKey[16];​
 +    uint8_t fileReadKeyNumber;​
 +    uint8_t fileWriteKeyNumber;​
 +    uint8_t reserved[2];​
 +} BS2DesFireAppLevelKey; ​                ///<​ 52 bytes
 +
 +typedef struct {
 +    BS2DesFireAppLevelKey desfireAppKey; ​   ///< 52 bytes
 +    uint8_t reserved[16];​
 +} BS2DesFireCardConfigEx; ​                  ///<​ 68 bytes
 +</​code>​
 +1. //​appMasterKey//​ \\ 
 +DesFire의 application master key 값 입니다. \\ \\ 
 +2. //​fileReadKey//​ \\ 
 +파일 읽기에 사용되는 key 값 입니다. \\ \\ 
 +3. //​fileWriteKey//​ \\ 
 +파일 쓰기에 사용되는 key 값 입니다. \\ \\ 
 +4. //​fileReadKeyNumber//​ \\ 
 +파일 읽기용 key의 key index 입니다. \\ \\ 
 +5. //​fileWriteKeyNumber//​ \\ 
 +파일 쓰기용 key의 key index 입니다. \\ \\ 
 +6. //​reserved//​ \\ 
 +예약된 공간입니다. \\ \\
 +7. //​desfireAppKey//​ \\ 
 +DesFire의 키 정보를 갖는 구조체입니다. \\ \\ 
 +8. //​reserved//​ \\
 +예약된 공간입니다. \\