📄 algrf_control.c
字号:
/*
* Copyright 2003 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
* granted through contract.
*
*/
/* "@(#) ReferenceFrameworks 2.20.00.08 07-18-03 (swat-f02)" */
/*
* ======== algrf_control.c ========
*/
#pragma CODE_SECTION(ALGRF_control, ".text:control")
#include <std.h>
#include <ialg.h>
#include <algrf.h>
/*
* ======== ALGRF_control ========
* Algorithm specific control and status
*/
Int ALGRF_control(ALGRF_Handle alg, IALG_Cmd cmd, IALG_Status *statusPtr)
{
if (alg && alg->fxns->algControl) {
return (alg->fxns->algControl(alg, cmd, statusPtr));
}
return (IALG_EFAIL);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -