CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: hash3d

Search: Search took 0.02 seconds.

  1. Replies
    28
    Views
    9,880

    Re: Windows boot and driver loading..

    Hi Peter,

    Problem solved!

    I did the tests you suggested. The driver loading procedure at boot time was much shorter than on installation time.
    I searched for Smart Card service and noticed it...
  2. Replies
    28
    Views
    9,880

    Re: Windows boot and driver loading..

    Hello,
    Thanks for help so far

    Since this is KMDF driver in my EvtAddDevice i have



    WdfDeviceInitSetDeviceType(DeviceInit, FILE_DEVICE_SMARTCARD);

    WdfDeviceInitSetIoType(DeviceInit,...
  3. Replies
    28
    Views
    9,880

    Re: Windows boot and driver loading..

    Hi
    Dirverentry and EvtAddDevice are called when system is starting. And the driver is visible in device manager and there are no exclamation or question marks on the driver icon.

    I don't know...
  4. Replies
    28
    Views
    9,880

    Windows boot and driver loading..

    Hi everyone.
    My smartcard driver works fine when fresh installed,
    but after windows reboot there aren't any actual readers availible in aplications for smart cards
    I have to uninstall and install...
  5. Replies
    3
    Views
    17,399

    Re: Smart Card, rejected IOCTL SET_PROTOCOL

    Thanks for your answer, iv'e managed to fix the problem on my own.
    Generally driver works

    I have 1 question:

    The driver works only if i load(install) it with SCARD_PRESENT or above, i would...
  6. Replies
    4
    Views
    3,722

    Re: Communicating with other drivers

    Ok got the communication running

    I would like to have a "Settings Tab" in my driver where i could pick/write another serial driver's name or symbolic link which to my driver will connect.

    How...
  7. Replies
    5
    Views
    17,031

    Re: Virtual SmartCard Reader driver development

    Well generally the idea was to make a connection between PC/SC interface and Serial interface on the kernel side with a possibility to choose what serial driver (COM port) the PC/SC interface is...
  8. Replies
    4
    Views
    3,722

    Re: Communicating with other drivers

    In my EvtDeviceAdd im tring to add my driver to serial stack
    by running this function at the end of EvtDeviceAdd:



    NTSTATUS BtscAttachCOMDriver(
    PDEVICE_EXTENSION pDeviceExtension...
  9. Replies
    4
    Views
    3,722

    Re: Communicating with other drivers

    Thanks for answering
    Yet i think the code doesnt fit(?) cause im trying to comunicate from my own driver to driver from other vendor.


    I woud like to connect and comunicate with COM drivers,...
  10. Replies
    5
    Views
    17,031

    Re: Virtual SmartCard Reader driver development

    Yes, project is possible to do, KMDF is great option to do it. Second question requires reading some basic Driver Development books and WDK Help, Third requires really really REALLY good study of...
  11. Replies
    3
    Views
    17,399

    Smart Card, rejected IOCTL SET_PROTOCOL

    Hello, i've got 2 problems
    My virtual smart card driver is unable to set protocol and send ATR
    I would like to recieve ATR and some data from driver.
    And my reader is some kind of "doubled": i...
  12. Replies
    4
    Views
    3,722

    Communicating with other drivers

    Can you give me a hint how to communicate with existing drivers? I would like to communicate with existing COM-like drivers from other vendors. Standard COM port would be good for start.
    Should i...
  13. Replies
    2
    Views
    2,249

    Re: Windows free vs checked edition problems

    There's a problem that i'm not able to get a "normal" checked version. I can't afford msdn subscription. And i'm still pretty stuck on previous questions in another topic.
  14. Replies
    2
    Views
    2,249

    Windows free vs checked edition problems

    I've managed to make a checked/debug version of windows xp by integrating a checked version of service pack 2 into free edition of windows XP sp1a. It works ok, gives some "invalid handle" info in...
  15. Thread: What IDE?

    by hash3d
    Replies
    2
    Views
    1,749

    Re: What IDE?

    I lost couple of days trying to configure VS2005 to work properly - it was a waste of time.

    Just create a folder, put all the files needed for WDK to build properly, make a "makefile" project and...
  16. Replies
    5
    Views
    17,031

    Virtual SmartCard Reader driver development

    Hello
    I'm writing a virtual SmartCard Reader driver for WinXP, the goal is
    to pass APDU's through two interfaces : PC/SC <-> SerialPort(COM)

    I've read a lot before posting, but i got all...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured