?? uart.c
字號:
//***************************************************************************
#include "inc\44b.h"
#include "inc\option.h"
#include "inc\44blib.h"
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
void Main(void)
{
char str[6]="china";
ChangePllValue(0,6,1);
Port_Init();
Uart_Init(0,9600);
while(1)
{
Uart_SendByte(0x65);
Uart_Printf(str);
Uart_Printf("my");
Uart_Printf("\r");
};
//Port_Init();
//Uart_Init(0,115200);
//Uart_Select(0);
//Uart_Printf("Main() called\r\n");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -