Prev Top
Name

KXL_ResetTimer

Synopsis
KXL_ResetTimer -- Timer interruption is reset.

Description
void KXL_ResetTimer(void);

Arguments

Nothing.


Return Value

Nothing.


Exsample
#include <KXL.h>

int main(void)
{
  Uint16 count = 0;
  Uint8 buff[64];

  KXL_CreateWindow(100, 100, "kxl.org", 0);

  KXL_Timer(1); // 1 interruption per second

  while (count <= 10) {
    KXL_ClearFrameImm(0, 0, 100, 100);
    sprintf(buff, "%2d second", count ++);
    KXL_PutText(8, 50, buff);
    KXL_UpDateImm(0, 0, 100, 100);
    while (KXL_GetTimer() == False);
    KXL_ResetTimer();
  }
  KXL_DeleteWindow();
  return 0;
}