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

📄 uart.h

📁 fat文件系统的源码 老外写的FAT32文件系统 还是有用的
💻 H
字号:
/*
  Jesper Hansen <jesperh@telia.com>
  
  Rewritten by:	Nikolai Vorontsov <nickviz@mail.be>

  Original Author: Volker Oth <volkeroth@gmx.de>

  This file is part of the yampp system.

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
  as published by the Free Software Foundation; either version 2
  of the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software Foundation, 
  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/


#ifndef __UART_H__
#define __UART_H__

#include "types.h"
#include "Constants.h"


/* UART Baud rate calculation */
#define UART_CPU			F_CPU
#define UART_BAUD_RATE			19200
#define UART_BAUD_SELECT		(UART_CPU / (UART_BAUD_RATE * 16L) - 1)

/* Global functions */
#ifdef ENABLE_SERIAL
extern volatile bool UART_CharReceived;

void UART_Init(void);
#define UART_HasChar() UART_CharReceived
u08  UART_ReceiveByte(void);
bool UART_CheckRxBuf(void);
extern void UART_SendByte(u08 Data);
extern void UART_Puts(u08* pBuf);
extern void UART_Puts_p(u08* p);
extern void UART_Putsln(u08* pBuf);
extern void UART_PrintfEndOfLine(void);
extern void UART_Printfu08(u08 Data);
extern void UART_Printfu16(u16 Data);
extern void UART_Printfu32(u32 Data);

#define PRINT(string)	UART_Puts(string)
#define PRINT_p(addr)	UART_Puts_p(addr)
#define EOL()		UART_PrintfEndOfLine()

#else // !ENABLE_SERIAL

#define UART_Init()
#define UART_HasChar() false
#define UART_SendByte(Data)
#define UART_ReceiveByte() 0
#define UART_Puts(pBuf)
#define UART_Puts_p(p)
#define UART_Putsln(pBuf)
#define UART_PrintfEndOfLine()
#define UART_Printfu08()
#define UART_Printfu16(Data)
#define UART_Printfu32(Data)

#define PRINT(string)	
#define PRINT_p(addr)	
#define EOL()

#endif // ifdef ENABLE_SERIAL

#endif

⌨️ 快捷键说明

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