找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 4732|回复: 0
打印 上一主题 下一主题
收起左侧

STM32F107验证通过的CRC校验程序

[复制链接]
跳转到指定楼层
楼主
STM32F107之CRC循环冗余校验码

下载:
代码 CRC循环冗余校验码.7z (699.97 KB, 下载次数: 56)

  1. /**
  2. /* Includes ------------------------------------------------------------------*/
  3. #include "stm32f10x.h"

  4. /** @addtogroup STM32F10x_StdPeriph_Examples
  5.   * @{
  6.   */

  7. /** @addtogroup CRC_Calculation
  8.   * @{
  9.   */

  10. /* Private typedef -----------------------------------------------------------*/
  11. /* Private define ------------------------------------------------------------*/
  12. #define BUFFER_SIZE    114

  13. /* Private macro -------------------------------------------------------------*/
  14. /* Private variables ---------------------------------------------------------*/
  15. static const uint32_t DataBuffer[BUFFER_SIZE] =
  16.   {
  17.     0x00001021, 0x20423063, 0x408450a5, 0x60c670e7, 0x9129a14a, 0xb16bc18c,
  18.     0xd1ade1ce, 0xf1ef1231, 0x32732252, 0x52b54294, 0x72f762d6, 0x93398318,
  19.     0xa35ad3bd, 0xc39cf3ff, 0xe3de2462, 0x34430420, 0x64e674c7, 0x44a45485,
  20.     0xa56ab54b, 0x85289509, 0xf5cfc5ac, 0xd58d3653, 0x26721611, 0x063076d7,
  21.     0x569546b4, 0xb75ba77a, 0x97198738, 0xf7dfe7fe, 0xc7bc48c4, 0x58e56886,
  22.     0x78a70840, 0x18612802, 0xc9ccd9ed, 0xe98ef9af, 0x89489969, 0xa90ab92b,
  23.     0x4ad47ab7, 0x6a961a71, 0x0a503a33, 0x2a12dbfd, 0xfbbfeb9e, 0x9b798b58,
  24.     0xbb3bab1a, 0x6ca67c87, 0x5cc52c22, 0x3c030c60, 0x1c41edae, 0xfd8fcdec,
  25.     0xad2abd0b, 0x8d689d49, 0x7e976eb6, 0x5ed54ef4, 0x2e321e51, 0x0e70ff9f,
  26.     0xefbedfdd, 0xcffcbf1b, 0x9f598f78, 0x918881a9, 0xb1caa1eb, 0xd10cc12d,
  27.     0xe16f1080, 0x00a130c2, 0x20e35004, 0x40257046, 0x83b99398, 0xa3fbb3da,
  28.     0xc33dd31c, 0xe37ff35e, 0x129022f3, 0x32d24235, 0x52146277, 0x7256b5ea,
  29.     0x95a88589, 0xf56ee54f, 0xd52cc50d, 0x34e224c3, 0x04817466, 0x64475424,
  30.     0x4405a7db, 0xb7fa8799, 0xe75ff77e, 0xc71dd73c, 0x26d336f2, 0x069116b0,
  31.     0x76764615, 0x5634d94c, 0xc96df90e, 0xe92f99c8, 0xb98aa9ab, 0x58444865,
  32.     0x78066827, 0x18c008e1, 0x28a3cb7d, 0xdb5ceb3f, 0xfb1e8bf9, 0x9bd8abbb,
  33.     0x4a755a54, 0x6a377a16, 0x0af11ad0, 0x2ab33a92, 0xed0fdd6c, 0xcd4dbdaa,
  34.     0xad8b9de8, 0x8dc97c26, 0x5c644c45, 0x3ca22c83, 0x1ce00cc1, 0xef1fff3e,
  35.     0xdf7caf9b, 0xbfba8fd9, 0x9ff86e17, 0x7e364e55, 0x2e933eb2, 0x0ed11ef0
  36.   };

  37. __IO uint32_t CRCValue = 0;

  38. /* Private function prototypes -----------------------------------------------*/
  39. void Delay(__IO uint32_t nCount);

  40. /* Private functions ---------------------------------------------------------*/

  41. /**
  42.   * @brief  Main program.
  43.   * @param  None
  44.   * @retval None
  45.   */
  46. int main(void)
  47. {
  48.   /*!< At this stage the microcontroller clock setting is already configured,
  49.        this is done through SystemInit() function which is called from startup
  50.        file (startup_stm32f10x_xx.s) before to branch to application main.
  51.        To reconfigure the default setting of SystemInit() function, refer to
  52.        system_stm32f10x.c file
  53.      */     
  54.       
  55.   /* Enable CRC clock */
  56.   RCC_AHBPeriphClockCmd(RCC_AHBPeriph_CRC, ENABLE);

  57.   /* Compute the CRC of "DataBuffer" */
  58.   CRCValue = CRC_CalcBlockCRC((uint32_t *)DataBuffer, BUFFER_SIZE);

  59.   while (1)
  60.   {
  61.   }
  62. }

  63. /**
  64.   * @brief  Inserts a delay time.
  65.   * @param  nCount: specifies the delay time length.
  66.   * @retval None
  67.   */
  68. void Delay(__IO uint32_t nCount)
  69. {
  70.   for(; nCount != 0; nCount--);
  71. }

  72. #ifdef  USE_FULL_ASSERT

  73. /**
  74.   * @brief  Reports the name of the source file and the source line number
  75.   *         where the assert_param error has occurred.
  76.   * @param  file: pointer to the source file name
  77.   * @param  line: assert_param error line source number
  78.   * @retval None
  79.   */
  80. void assert_failed(uint8_t* file, uint32_t line)
  81. {
  82.   /* User can add his own implementation to report the file name and line number,
  83.      ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */

  84.   /* Infinite loop */
  85.   while (1)
  86.   {
  87.   }
  88. }

  89. #endif

  90. /**
  91.   * @}
  92.   */

  93. /**
  94.   * @}
  95.   */

  96. /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
复制代码


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表