aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F0xx/crc/halconf_community.h
Commit message (Collapse)AuthorAgeFilesLines
* update stm32 testhal / demo headersNicolas Reinecke2016-11-081-3/+3
|
* fix warnings in STM32 projects because of missing configsNicolas Reinecke2016-05-011-0/+1
|
* Updated some testhal projects to new ChibiOS codebarthess2016-03-151-1/+8
|
* Fixed copypaste typo in commentsbarthess2015-10-151-1/+1
|
* FSMC code cleanupbarthess2015-10-141-0/+6
|
* Fixed rest of paths in build scripts.barthess2015-08-241-7/+7
|
* Add CRC DriverMichael Spradling2015-08-161-0/+104
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