diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2015-08-17 18:52:39 +0300 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2015-08-17 18:52:39 +0300 |
commit | 3a945458c067f0fb2aeefd22ac928fe982da6c3a (patch) | |
tree | 04b1aab8a8c5816a89767b64d956edef1dcdf3c5 /testhal/STM32/STM32F0xx/crc/mcuconf_community.h | |
parent | ab80aabfd48b50e122f6ff43adeedd1af4a5a607 (diff) | |
parent | fb8c390f06ee9466f498dc66a2bd955e5ba51b92 (diff) | |
download | ChibiOS-Contrib-3a945458c067f0fb2aeefd22ac928fe982da6c3a.tar.gz ChibiOS-Contrib-3a945458c067f0fb2aeefd22ac928fe982da6c3a.tar.bz2 ChibiOS-Contrib-3a945458c067f0fb2aeefd22ac928fe982da6c3a.zip |
Merge pull request #22 from M1Sports20/master
Add CRC Driver
Diffstat (limited to 'testhal/STM32/STM32F0xx/crc/mcuconf_community.h')
-rw-r--r-- | testhal/STM32/STM32F0xx/crc/mcuconf_community.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F0xx/crc/mcuconf_community.h b/testhal/STM32/STM32F0xx/crc/mcuconf_community.h new file mode 100644 index 0000000..8df78ec --- /dev/null +++ b/testhal/STM32/STM32F0xx/crc/mcuconf_community.h @@ -0,0 +1,33 @@ +/* + ChibiOS/RT - Copyright (C) 2015 Michael D. Spradling + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +#ifndef _MCUCONF_COMMUNITY_H_ +#define _MCUCONF_COMMUNITY_H_ + +/* + * CRC driver system settings. + */ +#define STM32_CRC_USE_CRC1 TRUE +#define STM32_CRC_CRC1_DMA_IRQ_PRIORITY 1 +#define STM32_CRC_CRC1_DMA_PRIORITY 2 +#define STM32_CRC_CRC1_DMA_STREAM STM32_DMA1_STREAM2 + +#define CRCSW_USE_CRC1 FALSE +#define CRCSW_CRC32_TABLE TRUE +#define CRCSW_CRC16_TABLE TRUE +#define CRCSW_PROGRAMMABLE TRUE + +#endif |