代码搜索结果

找到约 10,000 项符合 UART 的代码

uart.o

XL H 2 areas 2 global symbols M uart.c A text size 1C flags 0 dbfile D:\new_sd\uart.c dbfunc e uart0_rx_isr 0 fV dbsym r status 10 c dbsym r data 10 c dbline FFFFFFFF 6 dbline 10 6 dbline 12

uart.s

.module uart.c .area vector(rom, abs) .org 72 jmp _uart0_rx_isr .area text(rom, con, rel) .dbfile D:\new_sd\uart.c .dbfunc e uart0_rx_isr _uart0_rx_isr fV ; status -> R16 ;

uart.lis

.module uart.c .area text(rom, con, rel) ; uartNum -> R16 .even 0000 _uartInit:: 0000

uart.o

XL H 2 areas C global symbols M uart.c S pop_gset3x Ref0000 S pop_gset4x Ref0000 S push_gset3x Ref0000 S push_gset4x Ref0000 A text size 1A8 flags 0 S _uart1_udre_isr Def0168 S _getChar Def01

uart.s

.module uart.c .area text(rom, con, rel) ; uartNum -> R16 .even _uartInit:: ; #define _UART_C_ ; ; #define BAUD 38400 ; #define CRYSTAL 11059200 ; #define BAUD_SETTING (unsigned i

uart.h

#ifdef _UART_C_ #define _UART_GLOBE_ #else #define _UART_GLOBE_ extern #endif _UART_GLOBE_ void uartInit(uint8 uartNum); _UART_GLOBE_ void putChar(uint8 num, uint8 dat); _UART_GLOBE_ void putN

uart._c

#define _UART_C_ #define BAUD 19200 #define CRYSTAL 11059200 #define BAUD_SETTING (unsigned int)((unsigned long)CRYSTAL/(16*(unsigned long)BAUD)-1) #define BAUD_H (unsigned char)(BAUD_SETTING>>

uart.c

#define _UART_C_ #define BAUD 38400 #define CRYSTAL 11059200 #define BAUD_SETTING (unsigned int)((unsigned long)CRYSTAL/(16*(unsigned long)BAUD)-1) #define BAUD_H (unsigned char)(BAUD_SETTING>>

uart.h

/* * Copyright (c) 2006-2007 by Roland Riegel * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Lice