代码搜索:触发中断
找到约 10,000 项符合「触发中断」的源代码
代码结果 10,000
www.eeworm.com/read/407559/11415537
c 外部中断触发读取运行中定时器的值.c
/* 外部中断触发读取运行中定时器的值 */
#ifndef __DEMO_4_12_C__
#define __DEMO_4_12_C__
#include
#define _MHZ_ 12 // 设置单片机使用的晶振频率
void main()
{
/* 定时、中断初始化 */
TMOD = 0x10; // T1使用定时
www.eeworm.com/read/431972/8642830
sql 触发器.sql
select * From tb_topic
select * from tb_reply
Alter Trigger t_InsertReply
On tb_topic
For Insert
As
Insert into tb_reply (Topicid) Select Id From inserted deleted
--select Id
www.eeworm.com/read/431972/8643391
sql 触发器.sql
select * From tb_topic
select * from tb_reply
--将主题信息表中的ID插入到回复信息表的触发器开始
--作者:SK
--时间:2005-05-17
Alter Trigger t_InsertReply
On tb_topic
For Insert
As
Insert into tb_reply (Topic
www.eeworm.com/read/183908/9130541
ico 触发器.ico
www.eeworm.com/read/183908/9130548
h 触发器.h
// 触发器.h : PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // 主符号
// CMyApp:
/
www.eeworm.com/read/183908/9130560
rc 触发器.rc
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
/
www.eeworm.com/read/183908/9130563
cpp 触发器.cpp
// 触发器.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "触发器.h"
#include "触发器Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMyApp
BEGIN_MESSAGE_MAP(CMyApp, CWinApp)
ON_COM
www.eeworm.com/read/183908/9130569