代码搜索:UART 有哪些应用?

找到约 10,000 项符合「UART 有哪些应用?」的源代码

代码结果 10,000
www.eeworm.com/read/290127/8503210

c uart.c

/* ********************************************************************************************************* * Atmega48 *
www.eeworm.com/read/188842/8511186

cfg uart.cfg

uart "star12sci" { MCLK_frequency_kHz = 8000; sci_register_base = 0xc8; port_ddr_addr = 0x24A; port_io_addr = 0x248; rx_pin_offset = 0; tx_pin_offset = 1; }
www.eeworm.com/read/188841/8511279

cfg uart.cfg

// This configuration works for HC908GZ60 uart "hc08esci" { clock_frequency_kHz = 2000; sci_register_base = 0x09; port_ddr_addr = 0x0c; port_io_addr = 0x08;
www.eeworm.com/read/188839/8511425

cfg uart.cfg

// This configuration works for HC908GR60A uart "hc08esci" { clock_frequency_kHz = 2000; sci_register_base = 0x09; port_ddr_addr = 0x0c; port_io_addr = 0x08; rx_pi
www.eeworm.com/read/188838/8511528

cfg uart.cfg

// This configuration works for MC68HC908QY4 // PTA1 is Rx and PTB2 is Tx uart "hc08_swuart" { clock_frequency_kHz = 3200; TIM_base_addr = 0x20; TIM_prescaler
www.eeworm.com/read/188833/8512265

cfg uart.cfg

// This configuration works for HHC08EY16 uart "hc08esci_II" { /* Input clock of the ESCI module. */ clock_frequency_kHz = 16282; /* By default ESCI runs from CGMXCLK. */ esci_
www.eeworm.com/read/389399/8524122

h uart.h

/* ***************************************************************************** * based on software from: * Copyright 2004, R O SoftWare * No guarantees, warrantees, or promises, implied or oth
www.eeworm.com/read/389399/8524140

c uart.c

/* ***************************************************************************** * * $RCSfile: $ * $Revision: $ * * This module provides interface routines to the LPC ARM UARTs. * Copyrigh
www.eeworm.com/read/389396/8524407

h uart.h

#ifndef _uart_h_ #define _uart_h_ void Putch (char ch) ; char Getch(void) ; void puts (const char *Name2) ; void UART_Init(char baud); char * itoa(int i); char * uitoa(unsigned int i); char
www.eeworm.com/read/289651/8537435

h uart.h

/* 定义串口模式设置数据结构 */ typedef struct UartMode { uint8 datab; // 字长度,5/6/7/8 uint8 stopb; // 停止位,1/2 uint8 parity; // 奇偶校验位,0为无校验,1奇数校验,2为偶数校验 }UARTMODE