ds1307rtc.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #ifndef _DEV_DS1307RTC_H_
  2. #define _DEV_DS1307RTC_H_
  3. /*
  4. * Copyright (C) 2006 by egnite Software GmbH and Christian Welzel.
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
  24. * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. */
  35. /*
  36. * $Log: ds1307rtc.h,v $
  37. * Revision 1.2 2006/10/05 17:18:49 haraldkipp
  38. * Hardware independant RTC layer added.
  39. *
  40. * Revision 1.1 2006/06/30 22:07:43 christianwelzel
  41. * Initial check in.
  42. *
  43. *
  44. */
  45. #include <dev/rtc.h>
  46. extern NUTRTC rtcDs1307;
  47. __BEGIN_DECLS
  48. /* Prototypes */
  49. extern int DS1307Init(void);
  50. extern int DS1307RtcGetClock(struct _tm *tm);
  51. extern int DS1307RtcSetClock(CONST struct _tm *tm);
  52. extern int DS1307RtcReadRegs(u_char addr, u_char *buff, size_t len);
  53. extern int DS1307RtcWrite(CONST u_char *buff, size_t len);
  54. extern int DS1307RamRead(u_char addr, u_char *buff, size_t cnt);
  55. extern int DS1307RamWrite(u_char addr, CONST void *buff, size_t len);
  56. __END_DECLS
  57. /* End of prototypes */
  58. #endif