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
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).
2013-06-13Changed to use accessors instead of casting to volatile pointers.Piotr Esden-Tempski
In places where we were defining memory mapped peripheral buffers we were using directly a cast to "volatile int_type *". For consistency we should use dereferenced accessor like: &MMIO32(address)
2013-06-13Changed to use stdint types.Piotr Esden-Tempski
2013-06-13First coarse run to fix coding style in locm3.Piotr Esden-Tempski
Added --terse and --mailback options to the make stylecheck target. It also does continue even if it enounters a possible error. We decided on two exceptions from the linux kernel coding standard: - Empty wait while loops may end with ; on the same line. - All blocks after while, if, for have to be in brackets even if they only contain one statement. Otherwise it is easy to introduce an error. Checkpatch needs to be adapted to reflect those changes.
2013-06-03Fixed "function declaration isn't a prototype" warning introduced by the ↵Piotr Esden-Tempski
last patch.
2013-06-03[stm32] Added basic support for hash processorMikhail Avkhimenia
Added hash processor register definitions and main functions. Hash processor is supported in stm32f21, stm32f41 and stm32f43 and can be used to calculate Md5 and Sha1.