libopencm3/include/libopencm3/stm32/crc.h

45 lines
1.5 KiB
C
Raw Normal View History

/* This provides unification of code over STM32 subfamilies */
2010-05-03 14:49:08 +00:00
/*
* This file is part of the libopencm3 project.
2010-05-03 14:49:08 +00:00
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
2010-05-03 14:49:08 +00:00
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2010-05-03 14:49:08 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
2010-05-03 14:49:08 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
2010-05-03 14:49:08 +00:00
*/
#include <libopencm3/cm3/common.h>
#include <libopencm3/stm32/memorymap.h>
#if defined(STM32F0)
# include <libopencm3/stm32/f0/crc.h>
#elif defined(STM32F1)
2012-12-05 16:55:51 +00:00
# include <libopencm3/stm32/f1/crc.h>
#elif defined(STM32F2)
# include <libopencm3/stm32/f2/crc.h>
2013-06-26 08:47:29 +00:00
#elif defined(STM32F3)
# include <libopencm3/stm32/f3/crc.h>
2012-12-05 16:55:51 +00:00
#elif defined(STM32F4)
# include <libopencm3/stm32/f4/crc.h>
2019-04-11 14:57:13 +00:00
#elif defined(STM32F7)
# include <libopencm3/stm32/f7/crc.h>
2012-12-05 16:55:51 +00:00
#elif defined(STM32L1)
# include <libopencm3/stm32/l1/crc.h>
#elif defined(STM32L4)
# include <libopencm3/stm32/l4/crc.h>
#elif defined(STM32G0)
# include <libopencm3/stm32/g0/crc.h>
2012-12-05 16:55:51 +00:00
#else
# error "stm32 family not defined."
2010-05-03 14:49:08 +00:00
#endif
2012-12-05 16:55:51 +00:00