代码搜索结果

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

usart.d

.\神舟IV号\usart.o: ..\src\usart.c .\神舟IV号\usart.o: ..\..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h .\神舟IV号\usart.o: ..\..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h .\神舟IV号\usart.o:

usart.h

#ifndef __USART_H #define __USART_H #include "stdio.h" ////////////////////////////////////////////////////////////////////////////////// //本程序只供学习使用,未经作者许可,不得用于其它任何用途 //Mini STM32开发板 //串口1初始化

usart.c

#include "sys.h" #include "usart.h" ////////////////////////////////////////////////////////////////////////////////// //本程序只供学习使用,未经作者许可,不得用于其它任何用途 //ALIENTEK Mini STM32开发板 //串口1初始化 //正点

usart.d

usart.o: ..\SYSTEM\usart\usart.c usart.o: ..\SYSTEM\sys\sys.h usart.o: ..\USER\stm32f10x.h usart.o: ..\CORE\core_cm3.h usart.o: d:\Keil\ARM\RV31\INC\stdint.h usart.o: ..\USER\system_stm32f10x.h

usart._h

//---------------------------- USART串口驱动程序 ---------------------------- // //USART串口驱动程序:发送与接收 //整理日期:2009.7.8 // //----------------------------------------------------------------------------

usart.h

#include "config.h" void Usart_Init(unsigned int baud); void Usart_Transmit(unsigned char data); unsigned char Usart_Receive(void);