📄 utilities.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 + -