Old revisions Add to book Export to PDF Book Creator Add this page to your book Book Creator Remove this page from your book Manage book (0 page(s)) Help Configuration API > BS2_GetOsdpStandardActionConfig BS2_GetOsdpStandardActionConfig [+ 2.9.1] Get the LED/buzzer settings for each action of the OSDP device. Declaration #include "BS_API.h" int BS2_GetOsdpStandardActionConfig(void* context, uint32_t deviceId, BS2OsdpStandardActionConfig* config); See BS2OsdpStandardActionConfig Structure Parameter [In] context : Context [In] deviceId : Device Identifier [In] config : Pointer to store LED/buzzer information of OSDP device Return Value If successfully done, BS_SDK_SUCCESS will be returned. If there is an error, the corresponding error code will be returned. See Also BS2_SetOsdpStandardActionConfig Sample Code(C++) sample_getosdpstandardactionconfig.cpp int sdkResult = BS2_GetOsdpStandardActionConfig(context_, id, &config); if (BS_SDK_SUCCESS != sdkResult) printf("BS2_GetOsdpStandardActionConfig call failed: %d", sdkResult); return sdkResult; Sample Code (C#) sample_getosdpstandardactionconfig.cs BS2ErrorCode result = (BS2ErrorCode)API.BS2_GetOsdpStandardActionConfig(sdkContext, deviceID, out config); if (result != BS2ErrorCode.BS_SDK_SUCCESS) Console.WriteLine("Got error({0}).", result); else Console.WriteLine("Call success."); return result;