aboutsummaryrefslogtreecommitdiff
path: root/cmake/CheckTrezor.cmake (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-04-10trezor: support c++17 and protobuf v25, libusb fixDusan Klinec1-9/+16
- fix If there is no protobuf version installed, if fails - passphrase test fix, wallet keys init was missing
2023-09-30trezor: support v2.5.2+, add more trezor tests, fix chaingen and testsDusan Klinec1-74/+140
- passphrase logic: remove backward compatibility for 2.4.3, code cleanup. - fix LibUSB cmake for static builds on OSX - tests: all tests now work with passphrase logic enabled. Passphrase test added with different passphrase. no_passphrase test added, Trezor pin test added. Testing wallet opening with correct and incorrect passphrase. Trezor test chain revamp, cleanup. Smaller chain, chain file versioning added. - tests: Trezor tests support TEST_MINING_ENABLED, TEST_MINING_TIMEOUT env vars to change mining-related tests behaviour. - requires protobuf@21 on osx for now (c++14), building with unlinked protobuf: `CMAKE_PREFIX_PATH=$(find /opt/homebrew/Cellar/protobuf@21 -maxdepth 1 -type d -name "21.*" -print -quit) \ make debug-test-trezor -j8`
2020-10-06cmake: CheckTrezor - use ${CMAKE_CURRENT_LIST_DIR} to locate testsxiphon1-2/+2
2019-07-09build: fix OSX static libusb check and link against static libobjcxiphon1-2/+2
2019-03-05device/trezor: debugging features, trezor testsDusan Klinec1-1/+16
2018-12-18build: protobuf dependency fixes, libusb buildDusan Klinec1-4/+91
- docker protobuf dependencies, cross-compilation - device/trezor protobuf build fixes, try_compile - libusb built under all platforms, used by trezor for direct connect
2018-12-04device/trezor: device/trezor: correct device initialization, status checkDusan Klinec1-1/+1
- checks if the device is in the correct usable state - implements check for the v2.0.9 firmware which does not support payment IDs - simple transacttion check, payment id fmt consistency - minor fixes, refactoring, webusb session counting fix
2018-11-25device/trezor: webusb transport added, cmake fixesDusan Klinec1-0/+79
- webusb transport based on libusb added. Provides direct access to Trezor via USB, no need for Trezor bridge. - trezor protocol message handler improved, no recursion used. Ready for upcoming integration tests. - libusb (for docker) bumped from v1.0.9 to v1.0.22, newer version required for webusb transport, for device enumeration. - cmake improvements and fixes. Cmake Trezor checks are moved to a dedicated CheckTrezor.cmake file. In case of a problem Trezor is excluded from build. - ifdefs made consistent to Ledger. - UDP Transport enumeration disabled by default in release mode