代码搜索:UART
找到约 10,000 项符合「UART」的源代码
代码结果 10,000
www.eeworm.com/read/298525/7952113
src uart.src
[Files]
uart_main.c
modbus.c
timer2.c
led.c
[Headers]
C:\icc\include\iom48v.h
C:\icc\include\macros.h
main.h
modbus.h
timer2.h
led.h
[Documents]
www.eeworm.com/read/198041/7954358
h uart.h
/*! \file uart.h \brief UART driver with buffer support. */
//*****************************************************************************
//
// File Name : 'uart.h'
// Title : UART driver with
www.eeworm.com/read/198041/7954435
c uart.c
/*! \file uart.c \brief UART driver with buffer support. */
// *****************************************************************************
//
// File Name : 'uart.c'
// Title : UART driver with
www.eeworm.com/read/198026/7956905
h uart.h
#ifndef _uart_h_
#define _uart_h_
#include "board.h"
void InitUSART(void);
//return send data size
void TransmitBytes(unsigned char *data);
#endif
www.eeworm.com/read/198026/7956914
c uart.c
//Code adapted from Ateml AVR Application Note AVR306
#include
//Initialize USART 115200bps at 8MHz
void InitUSART(void)
{
UCSRB = 0x00;
UCSRA = 0x02;
UCSRC = 0x86;
UBRRL =
www.eeworm.com/read/198026/7956952
o uart.o
www.eeworm.com/read/298509/7957427
lst uart.lst
HI-TECH Software PICC Macro Assembler V8.05PL1
Serial number: HCPIC-90508 Thu Nov 8 13:04:20 2007
Licensed to: ONE
1 processor 16F6
www.eeworm.com/read/298509/7957450
sdb uart.sdb
[p GLOBOPT AUTOSTATIC PIC14 PICMIDHI PICLOMID ]
"13 c:\program files\HT-PIC\INCLUDE\pic16f62xa.h
[v _TMR0 `Vuc 1 s 1 @1 ]
"14
[v _PCL `Vuc 1 s 1 @2 ]
"15
[v _STATUS `Vuc 1 s 1 @3 ]
"16
[v _
www.eeworm.com/read/298509/7957453
c uart.c
//uart.c
#include "pic16f62xa.h"
#include "pic.h"
#include "typedefine.h"
#include "extern.h"
#define TRUE 1
#define FLASE 0
#define BRCLK 8000000
#define FRAMEOVERCO
www.eeworm.com/read/298509/7957536