aboutsummaryrefslogtreecommitdiff
path: root/stmhal/rtc.c
AgeCommit message (Collapse)Author
2015-05-11sthmal/rtc.c: Add calibration() method to get/set RTC fine-tuning value.blmorris
2015-03-16stmhal: Add config option to use LSE/LSI for RTC.Damien George
Most boards (except the pyboard) don't have a 32kHz crystal so they should use the LSI for the RTC.
2015-03-15stmhal: Add rtc.wakeup method, to set wakeup timer.Damien George
This allows to wake from low-power modes at a regular interval. This method is preliminary, pending testing and API overhaul.
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-12-02stmhal: Move RTC HAL init functions to rtc.c, where they belong.Damien George
So can remove unnecessary stm32f4xx_hal_msp.c file.
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
Addressing issue #50, still some way to go yet.
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
See discussion in issue #50.
2014-06-28stmhal: Include mpconfig.h before all other includes.Paul Sokolovsky
It defines types used by all other headers. Fixes #691.
2014-05-10stmhal: Fix setting of RTC: was BCD now BIN encoded.Damien George
Addresses issue #592.
2014-05-03Add license header to (almost) all files.Damien George
Blanket wide to all .c and .h files. Some files originating from ST are difficult to deal with (license wise) so it was left out of those. Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/.
2014-05-03Fix incorrect fix ;)Andrew Scheller
2014-05-03Updated doc fixAndrew Scheller
2014-05-03RTC doc fixAndrew Scheller
2014-05-03stmhal: Add example use to RTC doc; add rtc.c to gendoc.py.Damien George
2014-05-03stmhal: Add documentation for RTC class.Damien George
2014-04-21stmhal: Clean up rtc.c a bit.Damien George
2014-04-20stmhal: Add SPI class.Damien George
Also some updates to compile with latest changes to core py.
2014-04-19stmhal: Improve RTC class; make fatfs use RTC for time stamping files.Damien George
2014-03-15stmhal: Get RTC working.Damien George