Questions tagged [hardware-interface]

200 questions
-1
votes
1 answer

POS software/hardware general questions

I'm looking for answers to a few general questions as to how point of sale (POS) software and hardware generally works in brick-and-mortar stores. I realize there will be many edge cases given the sheer number of solutions out there, but I'm…
user21293
  • 6,439
  • 11
  • 44
  • 57
-1
votes
3 answers

How does recycle bin work (hardware layer)?

I'm interested what would happen with the hardware (hard disk) when deletes a file. I mean, I'm looking for some information about the process in hardware when the user decides to erase all the files from recycle bin. I'm interested in Windows OS. I…
Darf Zon
  • 6,268
  • 20
  • 90
  • 149
-2
votes
1 answer

settop box hacking

I've recently bought a new set-top box, and the hacker spirit beckons me to carry out things with it.. i understand there could be no standard procedure to hack it / play with it still there should so my questions are : what hardware knowledge do…
phoenix24
  • 2,072
  • 2
  • 20
  • 24
-3
votes
1 answer

Development of Station Licence in Borland C++ Builder 6

I am using Borland C++ Builder 6 to design a Station Licence mechanism for a Windows application. I have read that a Station Licence is bound to unique hardware information of the computer the application is running on. What hardware information…
eliastg
  • 449
  • 1
  • 4
  • 14
-5
votes
1 answer

Why does this code work with if statement but not while loop?

public void timerCallback() { if (count < 8) { System.out.println("My timer woke up!"); this.setOutputState(this.pinNumber, this.pinState); this.pinState = !this.pinState; this.setTimer(this.timerDelay); …
1 2 3
13
14