⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 这是达芬奇开发下的一个例程
💻 C
字号:
/*  *  Copyright 2008 *  Texas Instruments Incorporated * *  All rights reserved.  Property of Texas Instruments Incorporated *  Restricted rights to use, duplicate or disclose this code are *  granted through contract. *  *//* *  ======== main.c ======== *//** *  @file       ti/sdo/ce/examples/servers/video_copy/evmDM6446/main.c */#include <xdc/std.h>#include <ti/sdo/ce/CERuntime.h>#include <ti/sdo/ce/trace/gt.h>/* trace info: module name, mask */static GT_Mask gtMask = {0,0};/* *  ======== main ======== */Void main(Int argc, Char *argv[]){    /* init Codec Engine */    CERuntime_init();    /* init trace */    GT_init();    /* create a mask to allow a trace-print welcome message below */    GT_create(&gtMask, "servers.video_copy.evmDM6446");    /* ...and initialize all masks in this module to "on" */    GT_set("servers.video_copy.evmDM6446=01234567");    GT_0trace(gtMask, GT_4CLASS, "main> Welcome to DSP server's main().\n");}/* *  @(#) ti.sdo.ce.examples.servers.video_copy.evmDM6446; 1, 0, 0,55; 1-14-2008 09:54:58; /db/atree/library/trees/ce-g30x/src/ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -