📄 basic.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -