'잡동사니'에 해당되는 글 13451건

  1. 2025.03.11 NDEF 읽기
  2. 2025.03.11 mifare desfire 인증 프로세스
  3. 2025.03.11 ace combat 7 - 미션 20, 엔딩
  4. 2025.03.10 ace combat 7 - 미션 19
  5. 2025.03.10 k-pass 다자녀 혜택 + 횟수 제한
  6. 2025.03.10 stm32 sleep mode
  7. 2025.03.09 ace combat 7 F-22 구매!
  8. 2025.03.08 ace combat 7 미션 진행중
  9. 2025.03.08 fc san
  10. 2025.03.08 FCoE

아니.. chatGPT로는 못했는데 claude 만세 -_ㅠ

 

What are these commands?
The first command (90 60 00 00 00) is a MIFARE DESFire GetVersion command (wrapped command set). This seems to be specific to the NXP-based Android NFC stack and is not part of a typical NFC tag detection procedure.
The second command (00 A4 04 00 07 D2 76 00 00 85 01 01 00) is a SELECT APDU that tries to select the NFC Forum Type 4 tag application (version 2.0) by its AID. This is part of the typical tag detection procedure for ISO 14443-4 (ISO-DEP) based tags/smartcards.
Why are these commands sent before apps are notified about the presence of a tag and even if no app is active at all?
A typical NFC device will automatically discover the presence of NFC tags that contain NDEF messages. Usually such NDEF messages then trigger actions on the device (e.g. start an app). As your tag seems to be an ISO 14443-4 (ISO-DEP) compliant tag/smartcard, the NDEF discovery procedure for an NFC Forum Type 4 tag is started. This procedure normally contains of the following steps:
  1. Select the NFC Forum Type 4 tag application (version 2.0)
  2. If application selection is successful, continue with reading the capability container file and the NDEF data file.
  3. If application selection fails, continue with selecting the NFC Forum Type 4 tag application (version 1.0)
  4. If application selection is successful, continue with reading the capability container file and the NDEF data file.
  5. If application selection fails, tag is not an NFC Forum Type 4 tag.
  6. Typically the connection to the tag is reset at this point so that any communication that an app performs with a tag is started right after a fresh activation of the tag.
The additional command before step 1 indicates that the NXP's NFC stack additionally tries to find out if the Type 4 tag is an NXP product (NXP's MIFARE DESFire or DESFIRE EV1). It is not related to peer-to-peer mode protocols.
Remark on the Broadcom NFC stack: There is a known issue that seems to still exist on Android 4.4: Even after the tag is passed to an app and the app started IsoDep communication the NFC stack arbitrarily sends READ BINARY commands interleaved with the app's communication. This frequently results into protocol errors due to invalid command sequences. This does not happen with NXP's NFC stack.
Can I prevent this initial processing of a tag?
Yes, but only since Android 4.4. On that platform you can use the NfcAdapter's enableReaderMode method to bring the device into a reader mode without NDEF discovery.

[링크 : https://stackoverflow.com/questions/21121149/bytes-automatically-send-by-android-nfc-to-an-emulated-card]

 

8. MIFARE DESFire EV1 GetVersion command 1
Command: 90 60 00 00 00h
Expected Response: XX XX XX XX XX XX XX 91 AFh

9. MIFARE DESFire EV1 GetVersion command 2. The Storage Size code (SS) value indicates the storage size, in particular: 1Ah indicates 8192 bytes, 18h indicates 4096 bytes and 16h indicates 2048 bytes
Command: 90 AF 00 00 00h
Expected Response: XX XX XX SW XX SS XX 91 AFh

10. MIFARE DESFire EV1 GetVersion command 3
Command: 90 AF 00 00 00h
11. Expected Response: XX XX XX XX XX XX XX XX XX XX XX XX XX 91 00

[링크 : https://www.nxp.com/docs/en/application-note/AN11004.pdf]

'하드웨어 > rfid_nfc_smartcard' 카테고리의 다른 글

SCardListReadersA 함수(winscard.h)  (0) 2025.03.17
NTAG  (0) 2025.03.12
mifare desfire 인증 프로세스  (0) 2025.03.11
libnfc, libfreefare  (0) 2025.02.28
ATQA, SAK  (0) 2025.02.28
Posted by 구차니

검색하다 보니 먼가.. DES가 들어갔듯

무언가 인증 절차가 있는 것 같은데 NDEF도 이 영향을 받는건가?

 

MIFARE DESFire 인증 프로세스:
  1. 카드 리더는 통신을 시작하기 위해 MIFARE DESFire 카드에 요청을 보냅니다.
  2. 카드는 고유 식별자(UID)와 지원되는 명령 목록으로 응답합니다.
  3. 리더는 마스터 키 또는 애플리케이션 키와 같은 특정 키를 사용하여 카드 인증 요청을 보냅니다.
  4. 카드는 지정된 키를 사용하여 암호화된 난수(챌린지)로 응답합니다.
  5. 판독기는 동일한 키를 사용하여 챌린지를 해독하고 결과를 다시 카드로 보냅니다.
  6. 카드는 응답을 확인하고 성공하면 인증 상태를 판독기로 다시 보냅니다.
  7. 판독기는 이제 카드에 명령을 보내 데이터 읽기 또는 쓰기와 같은 특정 작업을 수행할 수 있습니다.
인증 프로세스는 MIFARE 기술의 특정 구현 및 애플리케이션의 보안 요구 사항에 따라 다를 수 있습니다. 또한 최신 MIFARE 카드는 고급 암호화 알고리즘과 인증 방법을 사용하여 보안을 강화할 수 있습니다.

[링크 : http://ko.as-rfid.com/info/what-is-the-authentication-process-of-mifare-81733128.html]

'하드웨어 > rfid_nfc_smartcard' 카테고리의 다른 글

NTAG  (0) 2025.03.12
NDEF 읽기  (0) 2025.03.11
libnfc, libfreefare  (0) 2025.02.28
ATQA, SAK  (0) 2025.02.28
pcsc pseudo APDU  (0) 2025.02.28
Posted by 구차니
게임/ace combat2025. 3. 11. 00:25

마크가 바뀔때만 이런 화면을 띄워주는건가..

좀 자주 나왔으면 더 좋았을텐데아는 아쉬움

 

엔딩은 귀찮아서(!) 넘겼고

막판에 좁은데서 기동하다 보니 자꾸 꼬라박고 쳐박아서 한 5번 넘게 재시도 하고 끝낸듯

 

마지막이라 그런가 완료 보너스가 두둑하구만

 

F-22A 다음에 새로운 기체가 열렸다.

19, 20미션 돈을 모아서 지르기!

 

F-22를 얻었는데 가속+감속 키를 할당해두지 않아서 (기존 2) 조금 편할 것 같은 걸로 바꾸고

다음에 포스트 스톨 기동을 시도해봐야겠다.

 

300km/h (270knot) 이하에서 "가속 + 감속" + 피치 업

그러면 난 s 눌러서 감속해두고 쉬프트 ↓ 누르면 바로 된다는건가?

[링크 : https://www.youtube.com/watch?v=I9wj5K00Jag]

'게임 > ace combat' 카테고리의 다른 글

ace combat 7 멀티 플레이 첫 시도  (2) 2025.03.16
ace combat 7 sp mission완료  (0) 2025.03.15
ace combat 7 - 미션 19  (0) 2025.03.10
ace combat 7 F-22 구매!  (0) 2025.03.09
ace combat 7 미션 진행중  (0) 2025.03.08
Posted by 구차니
게임/ace combat2025. 3. 10. 23:44

보상이 후하구만

 

 

'게임 > ace combat' 카테고리의 다른 글

ace combat 7 sp mission완료  (0) 2025.03.15
ace combat 7 - 미션 20, 엔딩  (0) 2025.03.11
ace combat 7 F-22 구매!  (0) 2025.03.09
ace combat 7 미션 진행중  (0) 2025.03.08
ace combat 7 키 맵 변경 (x-56)  (0) 2025.03.03
Posted by 구차니

올해부터 생겨났다고 오늘 첨 알음.. -_-

솔찍히 알뜰교통카드도 아니고 k-pass로 바뀌고 앱을 실행할 이유가 없다 보니 늦게 알아서 억울(!!)

 

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

low batt  (0) 2025.03.14
아내몰래 지름 ㅋㅋ  (2) 2025.03.13
2 스택  (0) 2025.03.07
정신이 늙었어..  (2) 2025.02.20
차 끌고 일찍 옴, 10g 만져봄  (0) 2025.02.14
Posted by 구차니
embeded/Cortex-M3 STM2025. 3. 10. 12:31

클럭을 12MHz정도로 낮췄더니

sleep mode로는 전력차이가 안나고

stop mode로 가야지 좀 차이가 난다.

uA 단위로는 standby mode로 가야 할 듯?

 

HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_SLEEPENTRY_WFI);
HAL_ResumeTick();

[링크 : https://blog.naver.com/wararat/221024526207]

[링크 : https://blog.naver.com/eziya76/221543393453]

 

 

멀 잘못했나.. sleep() 에서는 소비전력 차이가 없고 uart 인터럽트가 작동한다.

죽은거 맞아? 그렇다고 main loop가 살아나는건 또 아닌디..

[링크 : https://controllerstech.com/low-power-modes-in-stm32/]

Posted by 구차니
게임/ace combat2025. 3. 9. 20:57

돈이 없진 않은데 19번 미션을 깨려니 웬지 공중전 미친듯이 할 것 같아서

8AAM만 구매

 

 

있는 파트들 대충 때려박아보면

가진 녀석들 중에 가장 좋은 ADF-11F를 따를순 없지만 그래도 꽤나 근접한 능력치를 보여주게 된다.

오오오 이것이 천조국의 기술!!

'게임 > ace combat' 카테고리의 다른 글

ace combat 7 - 미션 20, 엔딩  (0) 2025.03.11
ace combat 7 - 미션 19  (0) 2025.03.10
ace combat 7 미션 진행중  (0) 2025.03.08
ace combat 7 키 맵 변경 (x-56)  (0) 2025.03.03
ace combat / x-56 hotas  (0) 2025.02.27
Posted by 구차니
게임/ace combat2025. 3. 8. 19:39

드디어 최종 트리 F-22A에 진입

그런데 이거 사고 나면 또 거지라(!)

열심히 돈을 벌어야 할 듯

해금 못한 기체도 겁나 많은데 도대체 몇 회차를 해야 다 열려나?

 

 

'게임 > ace combat' 카테고리의 다른 글

ace combat 7 - 미션 19  (0) 2025.03.10
ace combat 7 F-22 구매!  (0) 2025.03.09
ace combat 7 키 맵 변경 (x-56)  (0) 2025.03.03
ace combat / x-56 hotas  (0) 2025.02.27
ace combat + x56 hotas  (0) 2025.02.22
Posted by 구차니

SAN을 구성하는게 FC가 많이 때문에 같이 검색되는진 모르겠는데..

아무튼 시대가 바뀌어서 FC로 8~10G 쓰다가 10GbE가 나오다 보니 FCoE로 많이 통합하려고 했던 듯 하다.

SAN은 storage area network 라서 그런가 iSCSI 보다 좋은것 처럼 이야기 하긴 하는데,

iSCSI도 FC도 해보질 않아서 어느게 나을진 좀 더 찾아봐야할 듯.

 

iSCSI vs. FC vs. FCoE: Choosing the Right Storage Protocol for Your Business

[링크 : https://blog.purestorage.com/purely-educational/iscsi-vs-fc-vs-fcoe-choosing-the-right-storage-protocol-for-your-business/]

 

Linux: 스토리지 노드에 직접 연결 또는 SAN 볼륨을 추가합니다 << 못보던 명령어들...

[링크 : https://docs.netapp.com/ko-kr/storagegrid-116/expand/linux-adding-direct-attached-or-san-volumes-to-storage-node.html]

 

 

SAN 스토리지 구성하기 실습 ①편 (IBM V7000 기준) << 결국은 san 스위치랑 많은 수의 전용 장비가 필요해 보임

[링크 : https://lifegoesonme.tistory.com/347]

 

 

dark fiber - 한번 포설할때 여유를 가지고 설치하고, 사용되지 않는 대역폭 혹은 케이블을 표현

[링크 : https://boboob.tistory.com/163]

Posted by 구차니
하드웨어/FC_SAN_10G2025. 3. 8. 09:48

Fiber Channel over Ethernet

10GbE 나오더니 8G 수준의 FC와 통합되면서 전송 계층을 Ethernet으로 쓰는 듯?

 

--

FC 및 FCoE 장치의 대상 구성은 스위치 연결 환경에만 적용됩니다.
[링크 : https://www.ibm.com/docs/vi/aix/7.2.0?topic=configuration-targeted-fc-fcoe-devices]

 

cfgmgr (aix 명령어?)

[링크 : https://blog.naver.com/win2107/100002546792]



FC, iSCSI, FCIP, FCoE 장단점 비교

FCP (Fibre Channel Protocol) 

FCoIP (Fibre Channel over Internet Protocol)

[링크 : https://performance.tistory.com/m/66]

 

FCIP (Fiber Channel over IP) - FCoIP와 혼용해서 쓰나? 그 와중에 FCoE랑 차이는?

[링크 : https://blog.naver.com/heavenksm/80026302800]

'하드웨어 > FC_SAN_10G' 카테고리의 다른 글

fcoe ubuntu  (0) 2025.03.27
FCoE FCF(Fiber Channel Forwarder)  (0) 2025.03.27
fcoeadm  (0) 2025.03.07
BCM957810 10G NIC window 10 드라이버 버전  (0) 2025.02.26
BCM957810A1008G 10g linux 로그  (0) 2025.02.23
Posted by 구차니