I would like to use ALARM Function of the internal Bios CLOCK Calendar.
This works well manually with BIOS SETUP ALARM CLOCK.
How can I do from a Window Application to configure CALENDAR Registers to
fix an Alarm Hour ?
Ideas ? APIs functions ?
Thanks
Thierry
You should try some better NG that relate to driver and system programming.
Basically you will need one driver that you can use to gain access to In Out
functions. Then your application can communicate with that driver.
There are general purpose drivers that allow you to access ports trough them
from user mode, or you can write your simple driver.
One question for you though.
Do you know how to change these settings from pure DOS trough IO
instructions? Each BIOS is unique.
Regards,
Slobodan
"TA.forum" <ta.forum...@free.fr> wrote in message
news:unOA7GkT...@TK2MSFTNGP15.phx.gbl...
Although it is true some common (standard) thing should be supported. Like INT 1A for setting up CMOS Alarm (AT,XT286,PS).
Also, doing "OUT 70h" port to some CMOS registers may give some clues but would still require reading docs.
http://members.tripod.com/~oldboard/assembly/cmos_ram.html
KM
Best regards
Thierry
"KM" <konstmor@nospam_yahoo.com> a écrit dans le message de news:
uLAAr$tTFHA...@tk2msftngp13.phx.gbl...
This is why I asked you these questions before.
MS Win32 API won't let you to access IO registers so you must write your own
driver (theey have direct access) or use third-party driver that allow you
to access io ports.
For instance:
http://zealsoftstudio.com/ntport/index.html
Regards,
Slobodan
"TA.forum" <ta.forum...@free.fr> wrote in message
news:ugJghwU...@tk2msftngp13.phx.gbl...
Thaks a lot for this URL !
I download it and try my ideas (access to cmos clock registers)...
Best regards !
Thierry
"Slobodan Brcin (eMVP)" <sbr...@ptt.yu> a écrit dans le message de news:
OjG$O3UUF...@TK2MSFTNGP10.phx.gbl...
Search net for DirectIO. AFAIK, it has even been componentized for XPe (check www.xpefiles.com).
KM