diff --git a/README.md b/README.md index 0ba03cd..dff9ecd 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ base/startup/syspara_lite/ # syspara_lite module To obtain the system attributes, use the following code: ``` -char* value1 = GetProductType(); -printf("Product type =%s\n", value1); +char* value1 = GetDeviceType(); +printf("Device type =%s\n", value1); free(value1); char* value2 = GetManufacture(); printf("Manufacture =%s\n", value2); diff --git a/README_zh.md b/README_zh.md index 7ce0866..e0f6c96 100644 --- a/README_zh.md +++ b/README_zh.md @@ -30,8 +30,8 @@ base/startup/syspara_lite/ # 系统属性组件 获取系统属性 ``` -char* value1 = GetProductType(); -printf("Product type =%s\n", value1); +char* value1 = GetDeviceType(); +printf("Device type =%s\n", value1); free(value1); char* value2 = GetManufacture(); printf("Manufacture =%s\n", value2);