📄 process_data_1.c
字号:
#include "exercise_1.h"
//--------------------------------------------------------------------------//
// Function: Process_Data() //
// //
// Description: This function is called from the application when the //
// NewSample flag is switched on. The new input samples can be //
// found in the variables iADCnC (n = 1..2, C = L/R). The //
// processed data should be stored in //
// iDACnC (n = 1..3, C = L/R) respectively. //
//--------------------------------------------------------------------------//
void process_data(void)
{
iDAC2L = iADC2L;
iDAC2R = iADC2R;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -