📄 putsxlcd.c
字号:
#include "xlcd.h"
#include "delay.h"
#ifdef _RD10
/*******************************************************************
Function Name: PutsXLCD
Description: This function writes a string of characters
into the LCD controller.it stops transmission
before the null character.(which is not sent).
Input parameters: char *buffer
Return value: void
********************************************************************/
void PutsXLCD(char *buffer)
{
while(*buffer != '\0')
{
WriteDataXLCD(*buffer); /* calling another function */
/* to write each char to the lcd module */
buffer++;
}
} /* end of function */
#else
#warning "Does not build on this target"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -