Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

timer.h 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /**
  2. * \defgroup timer Timer library
  3. *
  4. * The timer library provides functions for setting, resetting and
  5. * restarting timers, and for checking if a timer has expired. An
  6. * application must "manually" check if its timers have expired; this
  7. * is not done automatically.
  8. *
  9. * A timer is declared as a \c struct \c timer and all access to the
  10. * timer is made by a pointer to the declared timer.
  11. *
  12. * \note The timer library uses the \ref clock "Clock library" to
  13. * measure time. Intervals should be specified in the format used by
  14. * the clock library.
  15. *
  16. * @{
  17. */
  18. /**
  19. * \file
  20. * Timer library header file.
  21. * \author
  22. * Adam Dunkels <[email protected]>
  23. */
  24. /*
  25. * Copyright (c) 2004, Swedish Institute of Computer Science.
  26. * All rights reserved.
  27. *
  28. * Redistribution and use in source and binary forms, with or without
  29. * modification, are permitted provided that the following conditions
  30. * are met:
  31. * 1. Redistributions of source code must retain the above copyright
  32. * notice, this list of conditions and the following disclaimer.
  33. * 2. Redistributions in binary form must reproduce the above copyright
  34. * notice, this list of conditions and the following disclaimer in the
  35. * documentation and/or other materials provided with the distribution.
  36. * 3. Neither the name of the Institute nor the names of its contributors
  37. * may be used to endorse or promote products derived from this software
  38. * without specific prior written permission.
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * This file is part of the uIP TCP/IP stack
  53. *
  54. * Author: Adam Dunkels <[email protected]>
  55. *
  56. * $Id: timer.h,v 1.3 2006/06/11 21:46:39 adam Exp $
  57. */
  58. #ifndef __TIMER_H__
  59. #define __TIMER_H__
  60. #include "clock.h"
  61. /**
  62. * A timer.
  63. *
  64. * This structure is used for declaring a timer. The timer must be set
  65. * with timer_set() before it can be used.
  66. *
  67. * \hideinitializer
  68. */
  69. struct timer {
  70. clock_time_t start;
  71. clock_time_t interval;
  72. };
  73. void timer_set(struct timer *t, clock_time_t interval);
  74. void timer_reset(struct timer *t);
  75. void timer_restart(struct timer *t);
  76. int timer_expired(struct timer *t);
  77. #endif /* __TIMER_H__ */
  78. /** @} */