aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/STM32F0xx
Commit message (Collapse)AuthorAgeFilesLines
* Update STM32 platform makefiles, add per-driver makefiles.Konstantin Oblaukhov2018-09-241-6/+17
|
* Fixed most testhal examples for STM32, updated configs using script. Fixed ↵Fabien Poussin2018-03-141-1/+1
| | | | deprecated MS2ST calls.
* add STM32 qei (quadrature encoder interface) driverNicolas Reinecke2016-05-081-0/+1
| | | | | | | Code from tinito in forum thread: http://forum.chibios.org/phpbb/viewtopic.php?f=14&t=685 Updated to chibios trunk.
* STM32 mass update to current naming convention in ChibiOSbarthess2016-04-071-2/+2
|
* TIMCAP: Initial commitFabien Poussin2016-02-161-1/+3
|
* Changed the way files are included to a more convenient way.Fabien Poussin2015-08-201-3/+3
|
* Add CRC DriverMichael Spradling2015-08-161-0/+6
This patch includes a high level and two low level drivers. The high level driver is enabled with flag HAL_USE_CRC The low level drivers include: * Hardware CRC for the STM32 cortex processor lines.(when supported) * Enabled with flag STM32_CRC_USE_CRC1 * DMA is enabled with CRC_USE_DMA * SYNC api will use DMA, but put calling thread to sleep * ASYNC api enabled. * DMA Disabled * SYNC api spin while calculating CRC * ASYNC api disabled * Software CRC (3 modes) * CRCSW_CRC32_TABLE - Enables crc32 with lookup table. * CRCSW_CRC16_TABLE - Enables crc16 with lookup tables. * CRCSW_PROGRAMMBLE - Enables any crc done with computation. * Can calculate any crc configuration. * CRC_USE_DMA obviously not support with software CRC