登录 注册
当前位置:主页 > 资源下载 > 10 > 蓝牙和串口通信程序

蓝牙和串口通信程序

  • 更新:2024-08-06 21:16:26
  • 大小:7KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C - 后端
  • 格式:7Z

资源介绍

void F2M_SetMspUartBR(unsigned int BaudrateConst) { portENTER_CRITICAL(); { #ifdef __F2M_UART1 UBR01 = (unsigned char)(BaudrateConst&0x00ff); UBR11 = (unsigned char)((BaudrateConst&0xff00)>>8); #else UBR00 = (char)(BaudrateConst&0x00ff); UBR10 = (char)((BaudrateConst&0xff00)>>8); #endif } portEXIT_CRITICAL(); }