multidspwelcome.c
来自「《DSP集成开发环境-CCS及DSP/BIOS的原理与应用》」· C语言 代码 · 共 22 行
C
22 行
// ********************************************
// Sample DSP application used to showcase GEL
// components controlling DSP code
// ********************************************
#include <stdio.h>
#define TRUE 1
int counterValue = 0;
void main()
{
while (TRUE) {
printf("Welcome to the World of DSP. %d\n", counterValue );
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?