aboutsummaryrefslogtreecommitdiff
path: root/src/crc32.c
AgeCommit message (Collapse)Author
2015-03-28Consistently use 'target *t' for target var.Gareth McMullin
2015-03-15Replace adiv5_ap_mem* functions with inline wrappers to target mem*.Gareth McMullin
2015-03-15Consolidate target_mem_read* and target_mem_write* methods.Gareth McMullin
There are now only mem_read and mem_write, that must handle all alignments. These methods return void, errors must be checked with target_check_error.
2015-03-01Clean up includes everywhere.Gareth McMullin
All source files include general.h first and before anything else. This inlcludes platform.h and platform_support.h No header file needs to include to include any of these, but should include any others needed for it's own declarations.
2013-04-14stm32f1/stm32f4: fix hardware CRC calculationPaul Fertser
This was real-life tested on stm32f1 hardware including computation for odd-sized ranges. Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2013-04-14Revert "Revert "STM32: Use hardware CRC unit""Gareth McMullin
This reverts commit 58abbf7fc7686a16ee5bdfacb1241a5adf2921ea.
2013-04-04Revert "STM32: Use hardware CRC unit"Gareth McMullin
This reverts commit 32b909067b2a34f475a52585b965c195de87c172. This CRC routine doesn't work. The bit order used by the STM32 CRC unit is reveresed from what GDB uses.
2013-01-23STM32: Use hardware CRC unitUwe Bonnes
2011-12-17Implement gdb 'qCRC' packet to support 'compare-sections' command.Gareth McMullin