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

📄 uart.h

📁 Basic Application Loading over the Serial Interface for the DaVinci TMS320DM644x
💻 H
字号:
/* -------------------------------------------------------------------------- *
 * uart.h - header file to define necessary registers for uart setup and use. *
 *    See sprue33.pdf for more details.                                       *
 * -------------------------------------------------------------------------- */

#ifndef _UART_H_
#define _UART_H_

#define MAXSTRLEN 256

// Function prototypes 
unsigned int UARTSendData(unsigned char* seq);
unsigned int UARTSendInt(unsigned int value);
unsigned int GetStringLen(unsigned char* seq);
unsigned int UARTRecvData(unsigned int numBytes, unsigned char* seq);

#endif // End _UART_H_

⌨️ 快捷键说明

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