ds1307: initial implementation of the ds1307 RTC

Signed-off-by: Jon Trulson <jtrulson@ics.com>
Signed-off-by: Sarah Knepper <sarah.knepper@intel.com>
This commit is contained in:
Jon Trulson
2014-12-04 13:50:13 -07:00
committed by Sarah Knepper
parent 66d39af6c5
commit 02156d11c8
8 changed files with 567 additions and 0 deletions

13
src/ds1307/pyupm_ds1307.i Normal file
View File

@@ -0,0 +1,13 @@
%module pyupm_ds1307
%include "../upm.i"
%feature("autodoc", "3");
#ifdef DOXYGEN
%include "ds1307_doc.i"
#endif
%include "ds1307.h"
%{
#include "ds1307.h"
%}