• MilliSecond Delay
    Hi, Is it possible to make a delay of approximetely 189.2143mS delay in C? I must have the code before my friend! SO pleaze show me what you do.
  • LPC2148 - Calculating Prescale Register value for 1 millisecond delay using Timer
    LPC2148 - How to calculate Prescale Register value to get 1 millisecond delay using Timer ? The Peripheral clock is running at 12Mhz frequency. Can anyone state the formula for this ? Awaiting...
  • Saving Milliseconds to array
    I am running an infinte while loop. Inside the while loop i give a FOR loop which runs 3 times. each time i get a specific value of second from the real time clock. I need to store these 3 seconds value...
  • RTX4 millisecond limits rather low
    In RTOS1, e.g. in RTX4.xx, calls like osSignalWait() take a timeout which the caller passes in units of milliseconds. This millis value then undergoes a transformation to systicks in rt_ms2tick (rt_CMSIS...
  • How use timer to delay in a function?
    A delay function is defined normally as: void delay(int n) { int i; for (i= 0; i<n; i++) _nop_(); } when delay() performed,ALU get in loop but do nothing.Can use a timer counting to delay...