diff --git a/components/badge23/Kconfig b/components/badge23/Kconfig index 0cdac74dc41533c1020b827ed84b319406b2bee9..cc2007431a7e0d625187687bad981061cccb1fd9 100644 --- a/components/badge23/Kconfig +++ b/components/badge23/Kconfig @@ -22,16 +22,10 @@ menu "Badge23 Config" Visual identifiers: - Sticker with B4xx (xx being arbitrary digits) on the back bool "Prototype 4" - config BADGE23_HW_GEN_ADILESS - help - Prototype version 5, a.k.a. adi-less - Visual identifiers: - - Sticker with B5xx (xx being arbitrary digits) on the back - bool "Prototype 5 / ADI-less" config BADGE23_HW_GEN_P6 help Prototype version 6, a.k.a. proto6 - Sticker with B6xx (xx being arbitrary digits) on the back - bool "Prototype 5 / ADI-less" + bool "Prototype 6" endchoice endmenu diff --git a/components/flow3r_bsp/flow3r_bsp_hwconfig.c b/components/flow3r_bsp/flow3r_bsp_hwconfig.c index 8b78878db7be295484852a2462482c7ff6f742d5..fecf34b751685c0483646a0c4b0c25ad6de74e44 100644 --- a/components/flow3r_bsp/flow3r_bsp_hwconfig.c +++ b/components/flow3r_bsp/flow3r_bsp_hwconfig.c @@ -6,8 +6,6 @@ const char *flow3r_bsp_hw_name = "proto1"; const char *flow3r_bsp_hw_name = "proto3"; #elif defined(CONFIG_BADGE23_HW_GEN_P4) const char *flow3r_bsp_hw_name = "proto4"; -#elif defined(CONFIG_BADGE23_HW_GEN_ADILESS) -const char *flow3r_bsp_hw_name = "adiless"; #elif defined(CONFIG_BADGE23_HW_GEN_P6) const char *flow3r_bsp_hw_name = "proto6"; #else diff --git a/idf_ext.py b/idf_ext.py index c80c0282da43732527daf4594e1242e22e7e50cf..f4a31d7b894efae6ab46f5eb5cec30cdb69308c1 100644 --- a/idf_ext.py +++ b/idf_ext.py @@ -17,7 +17,6 @@ def action_extensions(base_actions, project_path=os.getcwd()): 'p1': ['proto1'], 'p3': ['proto3'], 'p4': ['proto4'], - 'p5': ['adi-less'], 'p6': ['proto6'], } @@ -61,7 +60,7 @@ def action_extensions(base_actions, project_path=os.getcwd()): extensions = { 'global_options': [{ 'names': ['-g', '--generation'], - 'help': 'Specify badge generation to build for (one of: proto1, proto3, proto4, adiless). Defaults to proto4.', + 'help': 'Specify badge generation to build for (one of: proto1, proto3, proto4). Defaults to proto4.', 'scope': 'shared', 'multiple': False, }],