Skip to content

Commit

Permalink
upgrade the core library
Browse files Browse the repository at this point in the history
  • Loading branch information
z4yx committed Apr 17, 2024
1 parent 7963ece commit c5664e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Src/usbd_conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,10 @@ static void SystemClockConfig_Resume(void)
{
SystemClock_CustomConfig(false, true);
}

// Unused callback
void USBD_LL_Init_Done(void) {}

/* USER CODE END 5 */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
2 changes: 1 addition & 1 deletion canokey-core
Submodule canokey-core updated 57 files
+3 −2 CMakeLists.txt
+18 −5 README.md
+64 −30 applets/admin/admin.c
+7 −12 applets/ctap/cose-key.h
+9 −2 applets/ctap/ctap-internal.h
+7 −2 applets/ctap/ctap-parser.c
+230 −181 applets/ctap/ctap.c
+39 −17 applets/ctap/secret.c
+2 −2 applets/ctap/u2f.c
+3 −6 applets/ndef/ndef.c
+96 −114 applets/oath/oath.c
+192 −0 applets/pass/pass.c
+128 −78 applets/piv/piv.c
+1 −1 canokey-crypto
+1 −1 go.mod
+2 −6 go.sum
+8 −11 include/admin.h
+2 −0 include/apdu.h
+2 −0 include/ctap.h
+38 −7 include/device.h
+2 −0 include/fs.h
+1 −1 include/key.h
+60 −14 include/nfc.h
+1 −2 include/oath.h
+22 −0 include/pass.h
+12 −0 include/piv.h
+187 −31 interfaces/NFC/fm.c
+25 −6 interfaces/NFC/nfc.c
+135 −70 interfaces/USB/class/ccid/ccid.c
+17 −1 interfaces/USB/class/ccid/ccid.h
+5 −1 interfaces/USB/class/ccid/usbd_ccid.c
+2 −0 interfaces/USB/class/ccid/usbd_ccid.h
+73 −44 interfaces/USB/class/kbdhid/kbdhid.c
+28 −3 interfaces/USB/class/webusb/webusb.c
+1 −2 interfaces/USB/core/inc/usbd_core.h
+3 −19 interfaces/USB/core/src/usbd_core.c
+1 −1 interfaces/USB/core/src/usbd_ctlreq.c
+1 −0 interfaces/USB/device/usbd_canokey.c
+10 −10 interfaces/USB/device/usbd_desc.c
+1 −1 littlefs
+2 −0 src/applets.c
+1 −1 src/device.c
+13 −6 src/fs.c
+27 −29 src/key.c
+70 −0 test-real/test-pass.sh
+63 −4 test-via-pcsc/admin_test.go
+1 −0 test-via-pcsc/build_fido_tests.sh
+47 −0 test-via-pcsc/fido2_SM2_COSE_key.patch
+5 −22 test-via-pcsc/piv_test.go
+8 −6 test/test_key.c
+119 −21 test/test_oath.c
+8 −6 test/test_openpgp.c
+8 −6 test/test_piv.c
+1 −1 virt-card/device-sim.c
+20 −2 virt-card/fabrication.c
+5 −2 virt-card/ifdhandler.c
+2 −1 virt-card/usb-dummy.c

0 comments on commit c5664e1

Please sign in to comment.