Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updating halconf_community.h for demos/testhal | Fabien Poussin | 2019-10-30 | 1 | -0/+14 |
| | |||||
* | Re-organised FSMC drivers | Fabien Poussin | 2019-10-30 | 1 | -2/+2 |
| | |||||
* | Updated testhal for 19.1.x | Fabien Poussin | 2019-10-02 | 5 | -757/+928 |
| | |||||
* | Updating Makefiles for 19.1.x | Fabien Poussin | 2019-10-01 | 1 | -1/+1 |
| | |||||
* | Updated ChibiOS path for all Makefiles | Fabien Poussin | 2019-03-12 | 1 | -1/+1 |
| | |||||
* | Update chconf.h to RT v5.1. | Konstantin Oblaukhov | 2018-09-24 | 1 | -2/+90 |
| | |||||
* | New style makefiles for demos and tests. | Konstantin Oblaukhov | 2018-09-24 | 1 | -13/+7 |
| | |||||
* | Fixed most testhal examples for STM32, updated configs using script. Fixed ↵ | Fabien Poussin | 2018-03-14 | 5 | -844/+1036 |
| | | | | deprecated MS2ST calls. | ||||
* | Fixes for STM32F0 testhal | Fabien Poussin | 2018-03-08 | 4 | -48/+229 |
| | |||||
* | Add version tags | Fabio Utzig | 2017-10-09 | 1 | -0/+1 |
| | | | | Signed-off-by: Fabio Utzig <utzig@apache.org> | ||||
* | update stm32 testhal / demo headers | Nicolas Reinecke | 2016-11-08 | 2 | -6/+6 |
| | |||||
* | fix warnings in STM32 projects because of missing configs | Nicolas Reinecke | 2016-05-01 | 1 | -0/+1 |
| | |||||
* | update stm32 demo and testhal projects to upstream chibios | Nicolas Reinecke | 2016-05-01 | 1 | -8/+7 |
| | |||||
* | Updated Makefiles for STM32 according to | barthess | 2016-04-23 | 3 | -3/+82 |
| | | | | http://forum.chibios.org/phpbb/viewtopic.php?f=3&t=3301&sid=32a42f3ad6ca146ea07566e52f127d83 | ||||
* | QUEUES flags deleted from chconf.h files | barthess | 2016-03-28 | 1 | -8/+0 |
| | |||||
* | Updated some testhal projects to new ChibiOS code | barthess | 2016-03-15 | 3 | -13/+48 |
| | |||||
* | Added WDG switch to halconf.h files | barthess | 2016-01-13 | 1 | -0/+7 |
| | |||||
* | Fixed copypaste typo in comments | barthess | 2015-10-15 | 1 | -1/+1 |
| | |||||
* | FSMC code cleanup | barthess | 2015-10-14 | 1 | -0/+6 |
| | |||||
* | Fixed rest of paths in build scripts. | barthess | 2015-08-24 | 1 | -7/+7 |
| | |||||
* | Modified makefiles to incorporate changes | Fabien Poussin | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Changed the way files are included to a more convenient way. | Fabien Poussin | 2015-08-20 | 1 | -5/+6 |
| | |||||
* | Add CRC Driver | Michael Spradling | 2015-08-16 | 8 | -0/+1634 |
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 |