代码搜索:USART
找到约 10,000 项符合「USART」的源代码
代码结果 10,000
www.eeworm.com/read/236069/14033204
s43 fet430_uart01_02400.s43
;******************************************************************************
; MSP-FET430P430 Demo - USART0, 2400 UART Ultra-low Pwr Echo ISR, 32kHz ACLK
;
; Description: Echo a received cha
www.eeworm.com/read/236069/14033229
s43 fet430_uart01_09600.s43
;******************************************************************************
; MSP-FET430P430 Demo - USART0, 9600 UART Echo ISR, DCO SMCLK
;
; Description: Echo a received character, RX ISR
www.eeworm.com/read/236069/14033235
s43 fet430_uart01_19200.s43
;******************************************************************************
; MSP-FET430P430 Demo - USART0, 19200 UART Echo ISR, DCO SMCLK
;
; Description: Echo a received character, RX ISR
www.eeworm.com/read/236069/14033239
s43 fet430_spi0_016x.s43
;******************************************************************************
; MSP-FET430P430 Demo - USART0, SPI Interface to HC165/164 Shift Registers
;
; Description: Demonstrate USART0 in
www.eeworm.com/read/236069/14033310
s43 fet430_uart01_0115k.s43
;******************************************************************************
; MSP-FET430P430 Demo - USART0, 115200 UART Echo ISR, DCO SMCLK
;
; Description: Echo a received character, RX IS
www.eeworm.com/read/445332/7596571
c main.c
#include "M16_USART.h"
int main(void)
{
usart_init_std();
while(1)
{
usart_transmit9(0x3333);
_delay_ms(10);
}
return 0;
}
www.eeworm.com/read/173685/9642322
c bo_load.c
#ifndef _REFERENCE
//*-----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*-------------------------------
www.eeworm.com/read/352395/10555763
c main.c
/******************** (C) COPYRIGHT 2007 STMicroelectronics ********************
* File Name : main.c
* Author : MCD Application Team
* Version : V1.0
* Date
www.eeworm.com/read/416164/11038965
c main.c
/******************** (C) COPYRIGHT 2007 STMicroelectronics ********************
* File Name : main.c
* Author : MCD Application Team
* Version : V1.0
* Date
www.eeworm.com/read/242731/12988822
h uart.h
void USART_Init(void);
uint8_t USART_Receive(void);
void USART_Transmit(uint8_t data);
uint8_t USART_DataRx(void);
uint8_t DataInReceiveBuffer(void);
void uart_puts_p(const char *progmem_s);
voi