代码搜索:senddata
找到约 2,248 项符合「senddata」的源代码
代码结果 2,248
www.eeworm.com/read/251395/12348036
c spi.c
#include "config.h"
uint8 SPI_SendData(uint8 nDSEN,uint16 data)
{
IO0CLR|=(uint32)(1
www.eeworm.com/read/336769/12416256
c main.c
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/228878/14358425
h lcd.h
//LCD.h
#ifndef _LCD_H
#define _LCD_H
//引脚定义
sbit LCD_BACKLIGHT = P1^0; //背光,此处未用
sbit LCD_CS = P1^0;//片选
//位置码定义
//第一行
#define L1C1 0x80
#define L1C3 0x81
#define L1C5 0x82
#define L
www.eeworm.com/read/220821/14787250
cpp cb_freal.cpp
#include "CB_Freal.h"
#include "CB_String.h"
#include "CB_Unit.h"
#include "CB_Socket.h"
#include "Afx.h"
#include
#include "CB_User.h"
#include "CB_F4.h"
#include "CB_F1.h"
#includ
www.eeworm.com/read/220821/14787263
cpp cb_fperson.cpp
#include "CB_Fperson.h"
#include "CB_String.h"
#include "CB_Unit.h"
#include "CB_Socket.h"
#include "Afx.h"
//##ModelId=40AEA6AD01FB
int CB_Fperson::instance(char *str, char *fileName)
{
i
www.eeworm.com/read/220821/14787271
cpp cb_f1.cpp
#include "CB_F1.h"
#include "CB_String.h"
#include "CB_Unit.h"
#include "CB_String.h"
#include "CB_Socket.h"
#include "Afx.h"
//##ModelId=409333ED0036
int CB_F1::instance(char *str, char *f
www.eeworm.com/read/114740/15039854
cpp talklisten.cpp
// TalkListen.cpp : implementation file
//
#include "stdafx.h"
#include "TalkS.h"
#include "TalkListen.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __F
www.eeworm.com/read/163892/5505711
cpp ipc_msgserverdlg.cpp
// IPC_MSGServerDlg.cpp : implementation file
//
#include "stdafx.h"
#include "IPC_MSGServer.h"
#include "IPC_MSGServerDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static ch
www.eeworm.com/read/155328/5626666
c main.c
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.,LTD.
**
www.eeworm.com/read/153007/5654995
c main.c
//SPI实验,74HC595驱动7段数码管。
//SPI设置为主机时的操作:
/*1:设置SPCCR,得到需要的时钟
2:设置SPCR,控制SPI为主机模式,配置SPI时钟极性等
3:选择从机,将要发送的数据写入SPI数据寄存器,此写操作启动SPI数据传输
4:等待SPI状态寄存器中的SPIF位置位,SPIF位将在SPI数据传输的最后的一个周期之后置位
5:读取SPI ...