芯源半导体CW32
直播中

mameng

12年用户 354经验值
擅长:1
私信 关注

【武汉芯源CW32F030CX STARTKIT开发板免费试用体验】武汉芯源CW32F030 牛刀小试

收到有一家国产32位单片机开发板
    开发板做工不错哦,全部引脚引出:
  • 3 颗 LED: - 电源指示灯(LED3),用户指示灯(LED1,LED2)
  • 三个轻触开关: - 复位轻触开关(S3),用户轻触开关(S1,S2)
  • USB 转串口芯片(CH340N)
  • FLASH 芯片(W25Q64JVSSIQ)
  • EEPROM 芯片(CW24C02AD)



芯片特性:


MCU可以接收4 ~ 32MHz 晶体振荡器,相对比STM32f1不能超过16M,芯片超频看来可以的。


SDK 工程案例demo丰富,容易上手,SDKIdeSupportMDK有WHXY.CW32F030_DFP.1.0.3.pack
也有IAR配置文件。支持IAR MDK。完美!


点灯程序
  1. void Delay(uint16_t nCount);
  2. /**
  3. ******************************************************************************
  4. ** brief  Main function of project
  5. **
  6. ** return uint32_t return value, if needed
  7. **
  8. ** LED1, LED2闪烁
  9. **
  10. ******************************************************************************/
  11. int32_t main(void)
  12. {
  13.     GPIO_InitTypeDef GPIO_InitStruct;

  14.     RCC_HSI_Enable(RCC_HSIOSC_DIV6);
  15.     __RCC_GPIOB_CLK_ENABLE();

  16.     GPIO_InitStruct.IT = GPIO_IT_NONE;
  17.     GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  18.     GPIO_InitStruct.Pins = LED_GPIO_PINS;
  19.     GPIO_InitStruct.Speed = GPIO_SPEED_HIGH;

  20.     GPIO_Init(LED_GPIO_PORT, &GPIO_InitStruct);

  21.     while (1)
  22.     {
  23.         GPIO_TogglePin(LED_GPIO_PORT, LED_GPIO_PINS);
  24.         Delay(0xFFFF);
  25.     }
  26. }

  27. /**
  28. * [url=home.php?mod=space&uid=2666770]@Brief[/url] 循环延时
  29. *
  30. * [url=home.php?mod=space&uid=3142012]@param[/url] nCount
  31. */
  32. void Delay(__IO uint16_t nCount)
  33. {
  34.     /* Decrement nCount value */
  35.     while (nCount != 0)
  36.     {
  37.         nCount--;
  38.     }
  39. }

  40. /******************************************************************************
  41. * EOF (not truncated)
  42. ******************************************************************************/
  43. #ifdef  USE_FULL_ASSERT
  44. /**
  45.   * [url=home.php?mod=space&uid=2666770]@Brief[/url]  Reports the name of the source file and the source line number
  46.   *         where the assert_param error has occurred.
  47.   * [url=home.php?mod=space&uid=3142012]@param[/url]  file: pointer to the source file name
  48.   * @param  line: assert_param error line source number
  49.   * [url=home.php?mod=space&uid=1141835]@Return[/url] None
  50.   */
  51. void assert_failed(uint8_t *file, uint32_t line)
  52. {
  53.     /* USER CODE BEGIN 6 */
  54.     /* User can add his own implementation to report the file name and line number,
  55.        tex: printf("Wrong parameters value: file %s on line %drn", file, line) */
  56.     /* USER CODE END 6 */
  57. }
  58. #endif /* USE_FULL_ASSERT */


总结:SDK官方写的比较全面,代码规整。芯片功能齐全,性能稳定,可以取代国外同类IC。

点灯视频:




WeChat_20220803175523

更多回帖

发帖
×
20
完善资料,
赚取积分