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

📄 uart.h

📁 包装了一个开源的FAT16文件系统
💻 H
字号:
/* * Copyright (c) 2006-2007 by Roland Riegel <feedback@roland-riegel.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#ifndef UART_H#define UART_H#include <stdint.h>#include <avr/pgmspace.h>void uart_init();void uart_putc(uint8_t c);void uart_putc_hex(uint8_t b);void uart_putw_hex(uint16_t w);void uart_putdw_hex(uint32_t dw);void uart_putw_dec(uint16_t w);void uart_putdw_dec(uint32_t dw);void uart_puts(const char* str);void uart_puts_p(PGM_P str);uint8_t uart_getc();#endif

⌨️ 快捷键说明

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