|
21 | 21 | import logging
|
22 | 22 | import os
|
23 | 23 | import sys
|
| 24 | +from enum import Enum |
24 | 25 | from types import SimpleNamespace
|
25 | 26 |
|
26 | 27 | import cryptography.x509
|
|
44 | 45 |
|
45 | 46 | INVALID_PASSCODES = [00000000, 11111111, 22222222, 33333333, 44444444, 55555555,
|
46 | 47 | 66666666, 77777777, 88888888, 99999999, 12345678, 87654321]
|
47 |
| -PRODUCT_FINISH_ENUM = {"other": 0, "matte": 1, "satin": 2, "polished": 3, "rugged": 4, "fabric": 5} |
48 |
| -PRODUCT_COLOR_ENUM = {"black": 0, "navy": 1, "green": 2, "teal": 3, "maroon": 4, "purple": 5, "olive": 6, "gray": 7, "blue": 8, "lime": 9, |
49 |
| - "aqua": 10, "red": 11, "fuchsia": 12, "yellow": 13, "white": 14, "nickel": 15, "chrome": 16, "brass": 18, "cooper": 19, |
50 |
| - "silver": 19, "gold": 20} |
| 48 | + |
| 49 | + |
| 50 | +class Product_Finish_Enum(Enum): |
| 51 | + other = 0 |
| 52 | + matte = 1 |
| 53 | + satin = 2 |
| 54 | + polished = 3 |
| 55 | + rugged = 4 |
| 56 | + fabric = 5 |
| 57 | + |
| 58 | + |
| 59 | +class Product_Color_Enum(Enum): |
| 60 | + black = 0 |
| 61 | + navy = 1 |
| 62 | + green = 2 |
| 63 | + teal = 3 |
| 64 | + maroon = 4 |
| 65 | + purple = 5 |
| 66 | + olive = 6 |
| 67 | + gray = 7 |
| 68 | + blue = 8 |
| 69 | + lime = 9 |
| 70 | + aqua = 10 |
| 71 | + red = 11 |
| 72 | + fuchsia = 12 |
| 73 | + yellow = 13 |
| 74 | + white = 14 |
| 75 | + nickel = 15 |
| 76 | + chrome = 16 |
| 77 | + brass = 17 |
| 78 | + copper = 18 |
| 79 | + silver = 19 |
| 80 | + gold = 20 |
| 81 | + |
51 | 82 |
|
52 | 83 | TOOLS = {}
|
53 | 84 |
|
@@ -316,9 +347,9 @@ def populate_factory_data(args, spake2p_params):
|
316 | 347 | if args.hw_ver_str:
|
317 | 348 | FACTORY_DATA['hw-ver-str']['value'] = args.hw_ver_str
|
318 | 349 | if args.product_finish:
|
319 |
| - FACTORY_DATA['product-finish']['value'] = PRODUCT_FINISH_ENUM[args.product_finish] |
| 350 | + FACTORY_DATA['product-finish']['value'] = Product_Finish_Enum[args.product_finish].value |
320 | 351 | if args.product_color:
|
321 |
| - FACTORY_DATA['product-color']['value'] = PRODUCT_COLOR_ENUM[args.product_color] |
| 352 | + FACTORY_DATA['product-color']['value'] = Product_Color_Enum[args.product_color].value |
322 | 353 |
|
323 | 354 | # SupportedModes are stored as multiple entries
|
324 | 355 | # - sm-sz/<ep> : number of supported modes for the endpoint
|
@@ -489,9 +520,12 @@ def any_base_int(s): return int(s, 0)
|
489 | 520 | parser.add_argument('--supported-modes', type=str, nargs='+', required=False,
|
490 | 521 | help='List of supported modes, eg: mode1/label1/ep/"tagValue1\\mfgCode, tagValue2\\mfgCode" mode2/label2/ep/"tagValue1\\mfgCode, tagValue2\\mfgCode" mode3/label3/ep/"tagValue1\\mfgCode, tagValue2\\mfgCode"')
|
491 | 522 |
|
492 |
| - parser.add_argument("--product-finish", type=str, choices=PRODUCT_FINISH_ENUM.keys(), |
| 523 | + product_finish_choices = [finish.name for finish in Product_Finish_Enum] |
| 524 | + parser.add_argument("--product-finish", type=str, choices=product_finish_choices, |
493 | 525 | help='Product finishes choices for product appearance')
|
494 |
| - parser.add_argument("--product-color", type=str, choices=PRODUCT_COLOR_ENUM.keys(), |
| 526 | + |
| 527 | + product_color_choices = [color.name for color in Product_Color_Enum] |
| 528 | + parser.add_argument("--product-color", type=str, choices=product_color_choices, |
495 | 529 | help='Product colors choices for product appearance')
|
496 | 530 |
|
497 | 531 | parser.add_argument('-s', '--size', type=any_base_int, default=0x6000,
|
|
0 commit comments