⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 utilities.h

📁 <<AVR C语言的应用>>第九章中的例子 用ATmega1280 在IAR Embedded Workbench IDE平台编译连接通过的12个程序
💻 H
字号:
/**************************************************
 *
 * IAR EMBEDDED WORKBENCH TUTORIAL
 * Utility header file
 *
 * Copyright 1996 - 2003 IAR Systems. All rights reserved.
 *
 * $Revision: 1.1 $
 *
 **************************************************/

#define MAX_FIB 10

//-----------------------------------------------------------
// when running the tutorials using the DLIB libs you have
// to use the unbuffered __putchar function instead of the
// buffered putchar. In this case 'activate' the lines
// below.
#if 0
#include <yfuns.h>
#define putchar __putchar
#endif
//-----------------------------------------------------------

void init_fib( void );
unsigned int get_fib( int nr );
void put_fib( unsigned int out );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -