代码搜索结果
找到约 10,000 项符合
UART 的代码
uart.c
#include "config.h"
#define CR 0x0D
/* Implementation of putchar (also used by printf function to output data) */
unsigned char sendchar (unsigned char ch) { /* Write
uart.h
#ifndef _UART_H
#define _UART_H
//UART0接口
//**********Put a single byte to the serial port.
void put(unsigned char data) ;
//***********Receive a single byte from the serial port.
unsigned c
uart._c
//UART0接口
unsigned char put_done=0;
unsigned char recv_done=0;
unsigned char recvBuff[128];
unsigned char newMSG=0;
unsigned char i;
unsigned char *serial_recv_MSG;
unsigned char change_fl
uart.c
#include
//UART0接口
unsigned char put_done=0;
unsigned char recv_done=0;
unsigned char recvBuff[128];
unsigned char newMSG=0;
unsigned char i;
unsigned char *serial_recv_MSG;
un
uart.o
XL
H 5 areas 15 global symbols
M Uart.c
S push_gset2 Ref0000
S push_gset4 Ref0000
S pop_lset Ref0000
S _uart_receive_CMD Ref0000
S pop_gset2 Ref0000
S pop_gset4 Ref0000
S push_lset Ref0000
A
uart.s
.module Uart.c
.area data(ram, con, rel)
_put_done::
.blkb 1
.area idata
.byte 0
.area data(ram, con, rel)
_recv_done::
.blkb 1
.area idata
.byte 0
.area data(ram, con, rel)
_new
uart.lis
.module Uart.c
.area data(ram, con, rel)
0000 _put_done::
0000 .blkb 1
.area idata
0000 00
uart.h
#ifndef _UART_H
#define _UART_H
//UART0接口
//**********Put a single byte to the serial port.
void put(unsigned char data) ;
//***********Receive a single byte from the serial port.
unsigned c