The program is a wizard to create a NT kernel driver framework in C.
It will create a Visual C++ Workspace.
You can compile and link your driver in IDE.
If you have SoftICE, it can generate .nms file.
基于simulink的uwb仿真
uwb.mdl: UWB model - open this to begin.
uwb_lib.mdl: Library blocks for UWB model.
uwb_init.m: Initialization called before model is loaded.
uwb_settings: Sets up structure containing system parameters ( uwb in Workspace).
uwb_imr.m: Initializes UWB channel impulse response.
uwb_sv_*.m: Four M-files used to generate channel impulse responses (MAT files).
驅(qū)動(dòng)開發(fā)向?qū)?
I came across an article QuickSYS which implements an NT driver framework. That article demonstrates a MFC application that gets a project name as a parameter and creates Visual C++ Workspace with NT driver framework. I decided to copy the NT driver framework source and to put it in the Visual Studio project wizard as seen above. This is simpler rather than running an external executable application that generates the code for you.
CHAPT12\Chapt12.cpp Part of the 32-bit test progrma for the Win32Port class.
CHAPT12\Chapt12.dsp The Visual C++ project file for the program.
CHAPT12\Chapt12.dsw The Visual C++ Workspace file for the program.
CHAPT12\Chapt12.h The header file for the app s application class
CHAPT12\Chapt12.ico The icon used in Chapt12.exe
CHAPT12\Chapt12.rc The resource file use in the test program.
CHAPT12\Chapt12Dlg.cpp The implementation of the dialog class
CHAPT12\Chapt12Dlg.h The declarations of the dialog class
CHAPT12\MyWin32Port.h Definition for a class derived from Win32Port.
CHAPT12\resource.h The resource IDs
CHAPT13\AnsiWinTerm.cpp Class used in Win32 terminal emulation
CHAPT13\AnsiWinTerm.h Header file for the AnsiWinTerm class
CHAPT13\Chapt13.cpp 32-bit test program of terminal emulation
CHAPT13\Chapt13.dsp Visual C++ project file
CHAPT13\Chapt13.dsw Visual C++ Workspace file
CHAPT13\Chapt13.rc The resource file used in the test program
CHAPT13\resource.h IDs defined in the resource file
CHAPT13\Win32Term.cpp The Win32 general purpose terminal class
CHAPT13\Win32Term.h Definition of the class
CHAPT13\Debug\Chapt13.exe 32-bit executable of the test program.