在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
芯片精品文章合集(500篇!) 创芯人才网--重磅上线啦!
查看: 2778|回复: 6

[原创] 一个完整的DSP试验程序

[复制链接]
发表于 2006-8-7 14:23:54 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
本帖最后由 cjsb37 于 2013-4-29 09:18 编辑

TITLE
-----
ALGMIN (ALGorithm instantiation for MINimal, static applications) module

USAGE
-----
RF1

DESCRIPTION
-----------
ALGMIN is a module used for instantiation, activation, and deactivation
of "static" XDAIS algorithms, i.e. those whose memory requrements are
determined at compile time and all the buffers statically allocated.

FILES
-----
Each ALGMIN function is placed in a separate file to avoid dead code, unless
two or more functions are always dependent; in that case, they are placed
together in a single source file.

- algmin*.pjt: project files for building a library for the appropriate
      architecture
- algmin_new.c: ALGMIN_new() function
- algmin_activate.c: ALGMIN_activate() function
- algmin_exit.c: ALGMIN_exit() function
- algmin_init.c: ALGMIN_init() function
- ../include/algmin.h: public header file for the ALGMIN module
- readMe.txt: this file

NOTE
----
Files in the library are compiled with no optimization switches turned on,
and the same is true for the project files. If you plan to use this module
in a product release, it is advised that you rebuild the library with
optimization turned on.

Q&A
---
Q1: How is ALGMIN different from ALG or ALGRF?
Q2: How do I use ALGMIN?

---
Q1: How is ALGMIN different from ALG or ALGRF?
A1: The ALGMIN library module is a set of XDAIS algorithm instantiation
    procedures for compact, static applications.

    It is *NOT* functionally equivalent to the ALG or ALGRF modules.

    ALGMIN's key function is the ALGMIN_new function. All other functions are
    simply for module completeness.

    ALGMIN_new() instantiates a 'static' XDAIS algorithm. What does this mean?
    It means that instead of 'creating' an algorithm via dynamic heap based
    allocation of the algorithm's requested buffers, it simply initializes it
    to work with pre-configured buffers. These buffers are statically
    preconfigured a-priori to be of the alignment, size, etc specified by the
    algorithm.

    By avoiding heap-based allocation and buffer creation we save a great deal
    of codespace for small, compact, static applications.

---
Q2: How do I use ALGMIN?
A2: Example usage of ALGMIN_new (the key function)

    (a) In the main application we might do :-

    Char *firChanBufs[] = { firChanBufId00, firChanBufId01, firChanBufId02Scr };

    /* Statically create a FIR instance ie no heaps etc */
    firHandle0 = FIR_new(&FIR_IFIR, FIR_chanParamPtrs[0],
                       firChanBufs, (sizeof(firChanBufs) / sizeof(firChanBufs[0])));
   
    The declaration of firChanBufs could be stack-based since its lifetime
    need only be until completion of FIR_new()

    The contents of firChanBufs are *all* of the statically configured
    buffers (the number of which will match the number of memTab's).

    The last parameter uses the sizeof operator to guarentee that the number
    of elements passed is indeed the number of elements in firChanBufs.

    (b) in firapp.h we static inline FIR_new to map to ALGMIN_new

    static inline FIR_Handle FIR_new(const IFIR_Fxns *fxns,
            const FIR_Params *params, Char *firChanBufs[],
            SmUns firNumChanBufs)
    {
        return ( (FIR_Handle)ALGMIN_new((IALG_Fxns *)fxns,
                (IALG_Params *)params, firChanBufs, firNumChanBufs) );
    }

    This procedure can be repeated for N algorithms.

    Note that for each new algorithm, no additional codespace will be
    consumed since all new algorithms will map to use ALGMIN_new.








expt3_c54dsk.rar

621.7 KB, 下载次数: 22 , 下载积分: 资产 -2 信元, 下载支出 2 信元

发表于 2006-8-11 13:37:00 | 显示全部楼层
这么贵的东西不知到有用么
发表于 2006-11-2 21:32:51 | 显示全部楼层
不会吧?竟然是54的
用不着,浪费钱了
发表于 2006-11-15 16:22:29 | 显示全部楼层
非常好,大家一起来顶.
发表于 2006-11-29 17:00:54 | 显示全部楼层
看一看
发表于 2008-12-17 23:41:15 | 显示全部楼层
好。我喜欢啊。
发表于 2009-9-14 04:18:19 | 显示全部楼层
thanks
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条

小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-9-21 16:33 , Processed in 0.024488 second(s), 10 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表