Giter Site home page Giter Site logo

Invalid Board Number about mcculw HOT 5 OPEN

mccdaq avatar mccdaq commented on September 4, 2024
Invalid Board Number

from mcculw.

Comments (5)

matt454357 avatar matt454357 commented on September 4, 2024

It also works with C:

#include <stdio.h>
#include "..\cbw.h"

int main(void)
{
    int	ULStat = NOERRORS;
    USHORT DataValue = 0;

    ULStat = cbAIn(0, 6, 1, &DataValue);
    printf("Value=%d\n", DataValue);
    return 0;
}

Value=32764

from mcculw.

matt454357 avatar matt454357 commented on September 4, 2024

Here's a lower level test:

from ctypes import *

_cbw = WinDLL("./cbw64.dll")

data_value = c_ushort()
err_val = _cbw.cbAIn(0, 6, 1, byref(data_value))
print(f"Error code={err_val}")
print(f"Value={data_value}")

Which returns the following:

Error code=1
Value=c_ushort(0)

Where cbw64.dll has:

  • File Version = 1.93
  • Product Version = 6.73

from mcculw.

angel6700 avatar angel6700 commented on September 4, 2024

Hello,

did you ever found a solution to this?
I'm facing the same issue.

Thank you.

from mcculw.

matt454357 avatar matt454357 commented on September 4, 2024

No. I gave up and used C#.

from mcculw.

yusaku-m avatar yusaku-m commented on September 4, 2024

I faced similar situation.
Fortunatry, I had two PC which can use mcculw in 6 PC.
I think this error occured by Python version.

My test result as show belows,

Environment:
Model = USB-1616-HS-BNC
Windows 11
InstaCal version = 6.74
mcculw version = 1.0.0

Test results for Python version,

  • NG Python 3.8.10 - May 3, 2021
  • OK Python 3.10.4 - March 24, 2022
  • OK Python 3.10.6 - Aug. 2, 2022
  • NG Python 3.10.11 - April 5, 2023
  • NG Python 3.11.8 - Feb. 6, 2024
  • NG Python 3.12.2 - Feb. 6, 2024

In addition, I try re-install Python 3.10.6 to PC that failed test, all pc can use mcculw.

from mcculw.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.