From a961e014271d21f2557af82f1fcf5ff4e08f430f Mon Sep 17 00:00:00 2001 From: gusihan Date: Thu, 5 Sep 2024 17:10:20 +0800 Subject: [PATCH] add interface SendCmdToDriver Signed-off-by: gusihan --- wlan/chip/v1_0/IChipIface.idl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/wlan/chip/v1_0/IChipIface.idl b/wlan/chip/v1_0/IChipIface.idl index 1596635a..89d78d2f 100644 --- a/wlan/chip/v1_0/IChipIface.idl +++ b/wlan/chip/v1_0/IChipIface.idl @@ -353,5 +353,20 @@ interface IChipIface { * @version 1.0 */ GetCoexictenceChannelList([in] String ifName, [out] unsigned char[] paramBuf); + + /** + * @brief send a private cmd to driver. + * + * @param ifName ifName. + * @param cmdId cmdId. + * @param paramBuf paramBuf. + * + * @return Returns 0 if the operation is successful. + * @return Returns a negative value if the operation fails. + * + * @since 5.0 + * @version 1.0 + */ + SendCmdToDriver([in] String ifName, [in] int cmdId, [in] bytep[] paramBuf); }; /** @} */ \ No newline at end of file -- Gitee