Skip to content

Commit 7084a0c

Browse files
committed
Addressed review comments
1 parent f9ebabd commit 7084a0c

File tree

3 files changed

+47
-12
lines changed

3 files changed

+47
-12
lines changed

scripts/tools/generate_esp32_chip_factory_bin.py

+42-8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import logging
2222
import os
2323
import sys
24+
from enum import Enum
2425
from types import SimpleNamespace
2526

2627
import cryptography.x509
@@ -44,10 +45,40 @@
4445

4546
INVALID_PASSCODES = [00000000, 11111111, 22222222, 33333333, 44444444, 55555555,
4647
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+
5182

5283
TOOLS = {}
5384

@@ -316,9 +347,9 @@ def populate_factory_data(args, spake2p_params):
316347
if args.hw_ver_str:
317348
FACTORY_DATA['hw-ver-str']['value'] = args.hw_ver_str
318349
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
320351
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
322353

323354
# SupportedModes are stored as multiple entries
324355
# - sm-sz/<ep> : number of supported modes for the endpoint
@@ -489,9 +520,12 @@ def any_base_int(s): return int(s, 0)
489520
parser.add_argument('--supported-modes', type=str, nargs='+', required=False,
490521
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"')
491522

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,
493525
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,
495529
help='Product colors choices for product appearance')
496530

497531
parser.add_argument('-s', '--size', type=any_base_int, default=0x6000,

src/platform/ESP32/ESP32FactoryDataProvider.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@ CHIP_ERROR ESP32FactoryDataProvider::GetProductFinish(app::Clusters::BasicInform
251251
uint32_t productFinish = 0;
252252

253253
err = ESP32Config::ReadConfigValue(ESP32Config::kConfigKey_ProductFinish, productFinish);
254-
ReturnErrorOnFailure(err);
254+
ReturnErrorCodeIf(err != CHIP_NO_ERROR, CHIP_ERROR_NOT_IMPLEMENTED);
255+
255256
*finish = static_cast<app::Clusters::BasicInformation::ProductFinishEnum>(productFinish);
256257

257258
return err;
@@ -263,7 +264,7 @@ CHIP_ERROR ESP32FactoryDataProvider::GetProductPrimaryColor(app::Clusters::Basic
263264
uint32_t color = 0;
264265

265266
err = ESP32Config::ReadConfigValue(ESP32Config::kConfigKey_ProductColor, color);
266-
ReturnErrorOnFailure(err);
267+
ReturnErrorCodeIf(err != CHIP_NO_ERROR, CHIP_ERROR_NOT_IMPLEMENTED);
267268

268269
*primaryColor = static_cast<app::Clusters::BasicInformation::ColorEnum>(color);
269270

src/platform/ESP32/ESP32FactoryDataProvider.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ class ESP32FactoryDataProvider : public CommissionableDataProvider,
9696
CHIP_ERROR GetManufacturingDate(uint16_t & year, uint8_t & month, uint8_t & day) override;
9797
CHIP_ERROR GetPartNumber(char * buf, size_t bufSize) override;
9898
CHIP_ERROR GetHardwareVersion(uint16_t & hardwareVersion) override;
99-
CHIP_ERROR GetProductFinish(app::Clusters::BasicInformation::ProductFinishEnum * finish);
100-
CHIP_ERROR GetProductPrimaryColor(app::Clusters::BasicInformation::ColorEnum * primaryColor);
99+
CHIP_ERROR GetProductFinish(app::Clusters::BasicInformation::ProductFinishEnum * finish) override;
100+
CHIP_ERROR GetProductPrimaryColor(app::Clusters::BasicInformation::ColorEnum * primaryColor) override;
101101
#endif // CHIP_DEVICE_CONFIG_ENABLE_DEVICE_INSTANCE_INFO_PROVIDER
102102

103103
private:

0 commit comments

Comments
 (0)