basic.h
来自「bf533音訊處理 使用visual audio 軟件」· C头文件 代码 · 共 45 行
H
45 行
// Copyright(c) 2005 Analog Devices, Inc. All Rights Reserved.
// This software is proprietary and confidential to Analog Devices, Inc. and its licensors.
// File : $Id: //depot/Development/VisualAudio/Platforms/EZKit_BF533_Basic/2.5.0/Basic.h#2 $
// Part of : VisualAudio V2.5.0
// Updated : $Date: 2006/10/12 $ by $Author: Fernando $
#ifndef _BASIC_H_
#define _BASIC_H_
#define PRESETS_IN_FLASH 0
#ifdef __ECC__
#include "processor.h"
#include "Tuning.h"
#include "VALayouts.h"
#include "AudioDriver.h"
// Function for system initialization (in SYS_Init.c)
void SYS_Init(void);
// Function to do processing (in main.c)
// Arguments are arrays of pointers to channels
void DoProcessing(int **pInputPtrs,int **pOutputPtrs);
// Function to do user control code (in DoControlCode.c)
void DoControlCode(void);
//Function to apply a preset (used by DoControlCode.c)
int SYS_ApplyPreset(unsigned int nPresetOffset);
// Function for reporting errors (in main.c)
void ErrorMessage(char *);
#ifndef MIN
#define MIN(x,y) (((x)<(y))?(x):(y))
#endif
#ifndef MAX
#define MAX(x,y) (((x)>(y))?(x):(y))
#endif
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?