FossilOrigin-Name: 62c4cb8d0c8db41d622cc22b538572ec3b5f099debef172affc2e0237623aa94
This commit is contained in:
7u83@mail.ru 2015-03-19 00:24:11 +00:00
commit c6aed6d463
2 changed files with 6 additions and 0 deletions

View File

@ -209,6 +209,8 @@ int wtpconf_preinit()
conf_vendor_id = CONF_DEFAULT_VENDOR_ID;
conf_software_version = bstr_create_from_cfgstr(CONF_DEFAULT_SOFTWARE_VERSION);
conf_hardware_version = bstr_create_from_cfgstr(CONF_DEFAULT_HARDWARE_VERSION);
conf_bootloader_version = bstr_create_from_cfgstr(CONF_DEFAULT_BOOTLOADER_VERSION);
conf_serial_no = bstr_create_from_cfgstr(CONF_DEFAULT_SERIAL_NO);
conf_board_id = bstr_create_from_cfgstr(CONF_DEFAULT_BOARD_ID);

View File

@ -61,6 +61,10 @@ extern uint8_t conf_macaddress_len;
#define CONF_DEFAULT_BOOTLOADER_VENDOR_ID CW_VENDOR_ID_FSF
#endif
#ifndef CONF_DEFAULT_BOOTLOADER_VERSION
#define CONF_DEFAULT_BOOTLOADER_VERSION "W-FAT-BL-0.1"
#endif
#ifndef CONF_DEFAULT_MODEL_NO
#define CONF_DEFAULT_MODEL_NO "W-FAT"
#endif