pmontcfg.h
来自「用于TM1300/PNX1300系列DSP(主要用于视频处理)的操作系统pSOS」· C头文件 代码 · 共 63 行
H
63 行
/***********************************************************************//* *//* MODULE: pmontcfg.h 1.3 *//* DATE: 17:58:29 - 97/12/05 *//* PURPOSE: Configuration table structure templates *//* *//*---------------------------------------------------------------------*//* *//* Copyright 1993 - 1994, Integrated Systems, Inc. *//* ALL RIGHTS RESERVED *//* *//* Permission is hereby granted to licensees of Integrated Systems, *//* Inc. products to use or abstract this computer program for the *//* sole purpose of implementing a product based on Integrated *//* Systems, Inc. products. No other rights to reproduce, use, *//* or disseminate this computer program, whether in part or in *//* whole, are granted. *//* *//* Integrated Systems, Inc. makes no representation or warranties *//* with respect to the performance of this computer program, and *//* specifically disclaims any responsibility for any damages, *//* special or consequential, connected with the use of this program. *//* *//*---------------------------------------------------------------------*//* *//* This file contains templates for pMONT+ configuration table. *//* *//***********************************************************************/#if defined(__cplusplus)extern "C" {#endif/*---------------------------------------------------------------------*//* Don't allow this file to be included more than once. *//*---------------------------------------------------------------------*/#ifndef _PMONTCFG_H#define _PMONTCFG_Htypedef struct { void (*code)(); /* Address of pMONT+ module */ long data; /* start of pMONT data */ long dataSize; /* start of pMONT data */ long cmode; /* comm. mode: NETWORK_TYPE_CONN, PSOSDEV_.. */ long dev; /* IO dev. maj.minor # in format pSOS expects */ char *traceBuff; /* Buffer for logging trace events */ long traceBuffSize; /* trace events buffer size */ unsigned long (*tmFreq)(); /* returns 2nd timer frequency */ void (*tmReset)(); /* resets 2nd timer */ unsigned long (*tmRead)(); /* reads counter value of 2nd timer */ long res1; long res2; long res3; long res4; } pMONT_CT; #endif /* _PMONTCFG_H */#if defined(__cplusplus)}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?