├── .gitignore ├── LICENSE ├── README.md ├── blue-app-bip39perf ├── Makefile ├── README.md ├── demo.py ├── demoHash.py ├── script.ld ├── src │ ├── alt.c │ ├── alt.h │ ├── main.c │ └── memset.s └── src_usb │ ├── STM32_USB_Device_Library │ ├── Class │ │ └── HID │ │ │ ├── Inc │ │ │ └── usbd_customhid.h │ │ │ └── Src │ │ │ └── usbd_customhid.c │ ├── Core │ │ ├── Inc │ │ │ ├── usbd_conf_template.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ └── usbd_ioreq.h │ │ └── Src │ │ │ ├── usbd_conf_template.c.no │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ └── usbd_ioreq.c │ └── Release_Notes.html │ ├── usbd_conf.c │ ├── usbd_conf.h │ ├── usbd_customhid_if_template.c │ ├── usbd_customhid_if_template.h │ ├── usbd_desc.c │ └── usbd_desc.h ├── blue-app-helloperso ├── Makefile ├── README.md └── src │ ├── glyphs.h │ └── main.c ├── blue-app-helloworld ├── Makefile ├── README.md ├── demo.py └── src │ ├── glyphs.h │ └── main.c ├── blue-app-samplesign ├── Makefile ├── README.md ├── demo.py └── src │ ├── glyphs.h │ └── main.c └── blue-app-secureshot ├── Makefile ├── README.md ├── script.ld └── src └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/README.md -------------------------------------------------------------------------------- /blue-app-bip39perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/Makefile -------------------------------------------------------------------------------- /blue-app-bip39perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/README.md -------------------------------------------------------------------------------- /blue-app-bip39perf/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/demo.py -------------------------------------------------------------------------------- /blue-app-bip39perf/demoHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/demoHash.py -------------------------------------------------------------------------------- /blue-app-bip39perf/script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/script.ld -------------------------------------------------------------------------------- /blue-app-bip39perf/src/alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src/alt.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src/alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src/alt.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src/main.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src/memset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src/memset.s -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Class/HID/Inc/usbd_customhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Class/HID/Inc/usbd_customhid.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Class/HID/Src/usbd_customhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Class/HID/Src/usbd_customhid.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_conf_template.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_core.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_def.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_conf_template.c.no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_conf_template.c.no -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_core.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/STM32_USB_Device_Library/Release_Notes.html -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/usbd_conf.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/usbd_conf.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/usbd_customhid_if_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/usbd_customhid_if_template.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/usbd_customhid_if_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/usbd_customhid_if_template.h -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/usbd_desc.c -------------------------------------------------------------------------------- /blue-app-bip39perf/src_usb/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-bip39perf/src_usb/usbd_desc.h -------------------------------------------------------------------------------- /blue-app-helloperso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloperso/Makefile -------------------------------------------------------------------------------- /blue-app-helloperso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloperso/README.md -------------------------------------------------------------------------------- /blue-app-helloperso/src/glyphs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blue-app-helloperso/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloperso/src/main.c -------------------------------------------------------------------------------- /blue-app-helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloworld/Makefile -------------------------------------------------------------------------------- /blue-app-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloworld/README.md -------------------------------------------------------------------------------- /blue-app-helloworld/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloworld/demo.py -------------------------------------------------------------------------------- /blue-app-helloworld/src/glyphs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blue-app-helloworld/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-helloworld/src/main.c -------------------------------------------------------------------------------- /blue-app-samplesign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-samplesign/Makefile -------------------------------------------------------------------------------- /blue-app-samplesign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-samplesign/README.md -------------------------------------------------------------------------------- /blue-app-samplesign/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-samplesign/demo.py -------------------------------------------------------------------------------- /blue-app-samplesign/src/glyphs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blue-app-samplesign/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-samplesign/src/main.c -------------------------------------------------------------------------------- /blue-app-secureshot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-secureshot/Makefile -------------------------------------------------------------------------------- /blue-app-secureshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-secureshot/README.md -------------------------------------------------------------------------------- /blue-app-secureshot/script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-secureshot/script.ld -------------------------------------------------------------------------------- /blue-app-secureshot/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/ledger-sample-apps/HEAD/blue-app-secureshot/src/main.c --------------------------------------------------------------------------------