Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-09stm32: rcc: extract osc_bypass functionsKarl Palsson
rcc_osc_bypass_enable and rcc_osc_bypass_disable have been copy/pasted around for the last time! There's a compile bit to check for L0/L1, but otherwise this is just code duplication for no gain.
2016-08-19stm32: rcc: provide async routines for osc checksKarl Palsson
Start providing async routines for all blocking routines, to make it easier to use libopencm3 in some RTOS environments. This is not in anyway intended to be complete, this just covers a single blocking routine, rcc_wait_for_osc_ready. Documentation added to the top level, and provided for all stm32 families.
2016-08-19stm32: rcc: rcc_wait_for_osc_ready is always availableKarl Palsson
Move the prototype to the common_all header and include documentation.
2015-04-29stm32: common: Extract MCO source settingKarl Palsson
This adds MCO source selection to some targets, and removes and standardizes the mask/shift usage for all targets. For devices that support MCO2, this supports only MCO1. No attempt has been made to extract MCO prescaler, which is not available on all F1 and F3.
2014-03-11Changes to the header includes for all STM32 peripheralsKen Sarkies
to remove variations, redundancies, add missing, fix errors. All c files refer only to the dispatch style headers in /include/stm32. Those headers #include memorymap.h and cm3/common.h. All references to these are removed from the family specific headers. Ethernet untouched as it appears incomplete. Added dummy spi.c for F0/F3. Fix some doxygen anomalies.
2014-01-16Fix a number of top level doxygen issues.Ken Sarkies
So that the navigation pane works correctly in browsers. Some additional doc fixes put in where found (but many more still to go). Added some dummy .c and .h files to bring the associated docs into line. makefile changed to allow 'make html' as well as 'make doc' (the latter only does html anyway).
2014-01-03[Style] Global style fix run.Piotr Esden-Tempski
2014-01-03Better method of reset and clock handling with RCC, support L1, F1, F2, F3, F4BuFran