This commit is contained in:
2025-11-30 13:27:20 +03:00
parent f8bc7e65ff
commit 4239dd8bf2
2 changed files with 104 additions and 25 deletions

View File

@@ -72,6 +72,31 @@ extern "C"
{
#endif
typedef struct
{
char *_pn;
char *_doc;
char *_channel_1;
char *_channel_2;
char *_channel_3;
char *_channel_4;
uint8_t _used_channel;
} _component_t;
const _component_t _component[] =
{
{"SELECT P/N", "N/A", "N/A", "N/A", "N/A", "N/A", 0x00},
{"30-2581-3", "334230", "LOGO", "N/A", "N/A", "N/A", 0x08},
{"4298117", "334612", "400W", "600W", "N/A", "N/A", 0x0C},
{"4236534", "334303", "RUNW", "N/A", "N/A", "N/A", 0x08},
{"8000306Y00", "334303", "RUNW", "N/A", "N/A", "N/A", 0x08},
{"8000281Y00", "334303", "RUNW", "N/A", "N/A", "N/A", 0x08},
{"4292491", "334711", "LOGO", "N/A", "N/A", "N/A", 0x08},
{"4328733", "334711", "LOGO", "N/A", "N/A", "N/A", 0x08},
{"4358532", "334711", "LOGO", "N/A", "N/A", "N/A", 0x08},
{"ANY", "ANY ", "RED", "GRN", "ORG", "WHT", 0x0F}};
#ifdef __cplusplus
}
#endif