代码搜索结果
找到约 110,635 项符合
Driver 的代码
driver.h
// Declarations for filter driver
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#ifndef DRIVER_H
#define DRIVER_H
#define DRIVERNAME "MyFileFilter(zhangfan!)"
driver.h
// driver.h
#include "systemc.h"
SC_MODULE(driver){
sc_out d_a, d_b, d_cin;
void prc_driver();
SC_CTOR(driver){
SC_THREAD(prc_driver);
}
};
driver.cpp
// driver.cpp
#include "driver.h"
void driver::prc_driver(){
sc_uint pattern;
pattern = 0;
while(1){
d_a = pattern[0];
d_b = pattern[1];
d_cin = pattern[2];
wait(5,
setpping-driver.plg
礦ision2 Build Log
Project:
F:\study\C51\步进电机驱动\setpping-driver.uv2
Project File Date: 04/01/2007
Output:
setpping-driver.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
Op
setpping-driver.lnp
"setpping-driver.obj"
TO "setpping-driver"
driver.cpp
//
// Driver.c - Chapter 6 - Minimal Driver
//
// Copyright (C) 2000 by Jerry Lozano
//
#include "Driver.h"
// Forward declarations
//
static NTSTATUS CreateDevice (
IN PDRIVER_OBJECT p
driver.cpp
//
// Driver.c - Chapter 17 - Crasher Driver
//
// Copyright (C) 2000 by Jerry Lozano
//
#include "Driver.h"
static ULONG CrashPoint; // Determines where the
// driver will crash.
driver.h
// File Name:
// Driver.h
//
// Contents:
// Constants, structures, and function
// declarations specific to this driver.
//
#pragma once
//
// Header files
//
extern "C" {
#include
driver.h
// File Name:
// Driver.h
//
// Contents:
// Constants, structures, and function
// declarations specific to this driver.
//
#pragma once
//
// Header files
//
extern "C" {
#include