1 /* 2 // Copyright (C) 2022 Beken Corporation 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef _RELEASE_H_ 16 #define _RELEASE_H_ 17 18 #include "sdk_revision.h" 19 20 #define IP_11N_LIB_REV "W4-"BEKEN_SDK_REV"-P0" /* The SW revision of IP 11n lib */ 21 #define IP_11AX_LIB_REV "W6-"BEKEN_SDK_REV"-P0" /* The SW revision of IP 11ax lib */ 22 #define BLE_4X_LIB_REV "B4-"BEKEN_SDK_REV"-P0" /* The SW revision of BLE4.x lib */ 23 #define BLE_5X_LIB_REV "B5-"BEKEN_SDK_REV"-P0" /* The SW revision of BLE5.x lib */ 24 #define USB_2X_LIB_REV "U2-"BEKEN_SDK_REV"-P0" /* The SW revision of USB2.x lib */ 25 26 #endif 27