Announcement

Collapse
No announcement yet.

Communications driver toolkit?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Communications driver toolkit?

    Does anyone know of a good communications toolkit that can be used to build a serial communications driver with PB/DLL?

    ------------------

  • #2
    Hi Doug,

    Try this.

    http://www.powerbasic.com/support/addons/communic.asp

    ------------------
    The most exasperating part of the "rat race" is how often the rats are in the lead!

    Comment


    • #3
      If you're looking to write an actual Windows device driver, this can't be done with PowerBASIC. You'd probably be looking at Microsoft C or assembly language in conjunction with the MS DDK (Device Driver toolKit).

      ------------------
      Tom Hanlin
      PowerBASIC Staff

      Comment


      • #4
        Thanks to Scott and Tom for your responses. At this point I'm not sure whether to develop the "driver" as a DLL or as an actual device driver.

        Does anyone have any input as to the issues surrounding either choice?

        Thanks...

        ------------------

        Comment


        • #5
          A DLL is far simpler to design, build, debug, and make portable between platforms. A device driver may be required if you need to do low-level hardware access, or if you need to make the hardware available to Windows as a device. The two are rarely interchangeable. The choice should be fairly clear, depending on your requirements.

          ------------------
          Tom Hanlin
          PowerBASIC Staff

          Comment


          • #6
            This being an external serial device, communicating via modbus, I don't think I wil need any low-level access. Thanks for the advice Tom.

            ------------------

            Comment

            Working...
            X