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

📄 misc.c

📁 瑞萨M16C编写的模拟PS2主机与标准键盘通讯程序.完整的工程文件,测试可用.
💻 C
字号:
// Miscellaneous microcontroller functions#include "misc.h"#include "machine.h"#include <ctype.h>#include <string.h>// This code will be placed in the fixed memory area//#pragma SECTION program fixed_program// Delays for (aproximately) the specified number of microseconds// Input: d - delay time in usvoid delay( u16 d ) {	u16 i;	for ( i = 0; i < d; i ++ ) 	{		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();		nop();			}}// Transform a string to lower case// Input: pstr - the stringvoid strlower( char *pstr ){  u16 i;    for( i = 0; i < strlen( pstr ); i ++ )    pstr[ i ] = tolower( pstr[ i ] );}

⌨️ 快捷键说明

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