I am trying to run the following pseudocode at a rate of 10 microseconds or faster on a host computer (512 mb RAM, Intel 2.5 GHz Pentium 4 processor, etc.) running on a Windows XP operating system:
int main(void)
{
while(1){};
}
Interrupt service routine:
every 10 microseconds, printf("Hello World");
I'm aware that there are MFC timers, but they are not functional if the timers need to trigger faster than 1 ms. What would be the easiest method to accomplish what the goals of my pseudocode? Thanks in advance.