文件名称:uart_library:Beaglebone的UART库
文件大小:83KB
文件格式:ZIP
更新时间:2024-03-05 01:47:01
beaglebone-black serial uart serialread serialwrite
C语言中Beaglebone的UART库 该存储库包含C语言中的功能UART库 适用于Beaglebone的所有变体。 控制Beaglebone Black Rev3的3个UART 用法示例 # include " uart.h " /* This is needed for the functioning of the libray. */ int main () { uart_init (); /* Inititialize the UART */ char *rec; /* A buffer to store the reception */ while ( 1 ) { sleep ( 1 ); serial_write ( 1 , " 15 " , " B9600 " ); /* writes "15" into UAR
【文件预览】:
uart_library-master
----LICENSE(34KB)
----README.md(1KB)
----UART()
--------src()
--------Debug()