diff --git a/components/NVM/Settings.c b/components/NVM/Settings.c index 0f934ca..df918c8 100644 --- a/components/NVM/Settings.c +++ b/components/NVM/Settings.c @@ -170,6 +170,11 @@ SystemKResult_T SETTINGS_get_uint32_t(SystemKSettingID_T id, uint32_t *value) result = SYSTEMK_RESULT_SUCCESS; break; + case SYSTEMK_SETTING_DEVICE_TYPE: + *value = BLE_DEVICE_TYPE_32ESPECIAL; + result = SYSTEMK_RESULT_SUCCESS; + break; + default: result = SYSTEMK_RESULT_WRONG_DATATYPE; break;