LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

search LPT address in BIOS

I have not found  a way to use LabWindows to query the system BIOS to determine the LPT port setting (i.e. 0x378, 0x278, etc).  Is there a way to accomplish this?  I would like the utility I develop to do this and store in a variable.  Any ideas?
0 Kudos
Message 1 of 3
(3,420 Views)

Try this

    unsigned int address =0;    
    ReadFromPhysicalMemory (0x408, &address, 2); //low level driver needs to be loaded

See this document for more information

Bilal Durrani
NI
Message 2 of 3
(3,410 Views)
Thanks for the help.  The reference link had a great example of reading the BIOS info.
Pooblem solved.

=:-)


0 Kudos
Message 3 of 3
(3,400 Views)