From 739e4f2e45f325d697ef17fad6cc21348eec4ace Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 25 Jan 2018 17:46:29 +0100 Subject: [PATCH] fix release_num values --- embed/bootloader/main.c | 2 +- embed/prodtest/main.c | 2 +- tests/production_tests/main.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/embed/bootloader/main.c b/embed/bootloader/main.c index 039b7862..012b2c85 100644 --- a/embed/bootloader/main.c +++ b/embed/bootloader/main.c @@ -33,7 +33,7 @@ static void usb_init_all(void) { static const usb_dev_info_t dev_info = { .vendor_id = 0x1209, .product_id = 0x53C0, - .release_num = 0x0002, + .release_num = 0x0200, .manufacturer = "SatoshiLabs", .product = "TREZOR Bootloader", .serial_number = "", diff --git a/embed/prodtest/main.c b/embed/prodtest/main.c index 6f192d0a..d65cde1a 100644 --- a/embed/prodtest/main.c +++ b/embed/prodtest/main.c @@ -88,7 +88,7 @@ static void usb_init_all(void) static const usb_dev_info_t dev_info = { .vendor_id = 0x1209, .product_id = 0x53C1, - .release_num = 0x0002, + .release_num = 0x0200, .manufacturer = "SatoshiLabs", .product = "TREZOR", .serial_number = "000000000000", diff --git a/tests/production_tests/main.py b/tests/production_tests/main.py index 90156f81..60d35853 100644 --- a/tests/production_tests/main.py +++ b/tests/production_tests/main.py @@ -14,7 +14,7 @@ usb_vcp = io.VCP( usb = io.USB( vendor_id=0x1209, product_id=0x53C1, - release_num=0x0002, + release_num=0x0200, manufacturer="SatoshiLabs", product="TREZOR", serial_number="000000000000000000000000",