2597|2

190

帖子

10

TA的资源

一粒金砂(中级)

楼主
 

【KW41Z】蓝牙串口分析2 [复制链接]

蓝牙看不懂,只能通过串口入手,仿真找到以下函数,串口接收数据,通过蓝牙发送出去

static serialStatus_t Serial_WriteInternal( uint8_t InterfaceId )



void SerialManagerTask(osaTaskParam_t argument) 任务管理函数
{
    uint16_t i;
    uint8_t ev;

#if defined(FWK_SMALL_RAM_CONFIG)
    {
#else
    osaEventFlags_t  mSMTaskEventFlags;

    while( 1 )
    {
        /* Wait for an event. The task will block here. */
        (void)OSA_EventWait(mSMTaskEventId, osaEventFlagsAll_c, FALSE, osaWaitForever_c ,&mSMTaskEventFlags);
#endif
        for( i = 0; i < gSerialManagerMaxInterfaces_c; i++ )
        {
            OSA_InterruptDisable();
            ev = mSerials.events;
            mSerials.events = 0;
            OSA_InterruptEnable();

            if ( (ev & gSMGR_Rx_c) &&
                 (NULL != mSerials.rxCallback) )
            {
                mSerials.rxCallback( mSerials.pRxParam ); //-》Uart_RxCallBack
            }

            if( ev & gSMGR_TxDone_c )
            {
                Serial_TxQueueMaintenance(&mSerials);
            }

            /* If the Serial is IDLE and there is data to tx */
            if( (mSerials.state == 0) && (mSerials.txQueue[mSerials.txCurrent].dataSize > 0) )
            {
                (void)Serial_WriteInternal( i );
            }
#if gSerialMgrUseSPI_c
            /* If the SPI Slave has more data to transmit, restart the transfer */
#if gSerialMgrSlaveDapTxLogicOne_c
            if( (GpioReadPinInput(&mSpiMasterDapCfg)) && (mSerials.serialType == gSerialMgrSPIMaster_c) && (0 == mSerials.state) )
#else
            if( (!GpioReadPinInput(&mSpiMasterDapCfg)) && (mSerials.serialType == gSerialMgrSPIMaster_c) && (0 == mSerials.state) )
#endif
            {
                if( (0 == mSerials.txQueue[mSerials.txIn].dataSize) && (NULL == mSerials.txQueue[mSerials.txIn].txCallback) )
                {
                    Serial_SpiSendDummyByte(i);
                }
            }
#endif

        }

#if !defined(FWK_SMALL_RAM_CONFIG)
        /* For BareMetal break the while(1) after 1 run */
        if (gUseRtos_c == 0)
        {
            break;
        }
#endif
    } /* while(1) */
}
#endif




static void UartStreamFlushTimerCallback(void *pData)
{//超时回调
    App_PostCallbackMessage(BleApp_FlushUartStream, NULL);
}

static void Uart_RxCallBack(void *pData)
{//串口的回调函数
    uint16_t byteCount;

    Serial_RxBufferByteCount(gAppSerMgrIf, &byteCount);

    if (byteCount < mAppUartBufferSize)
    {
此帖出自NXP MCU论坛

最新回复

nmg
标红的地方是什么意思  详情 回复 发表于 2017-6-30 09:58
点赞 关注
 

回复
举报

5260

帖子

239

TA的资源

管理员

沙发
 
标红的地方是什么意思
此帖出自NXP MCU论坛
加EE小助手好友,
入技术交流群
EE服务号
精彩活动e手掌握
EE订阅号
热门资讯e网打尽
聚焦汽车电子软硬件开发
认真关注技术本身

点评

仿真的逆向推导 的断点关键于,这不是保存到草稿的?怎么发布出来的?!  详情 回复 发表于 2017-6-30 20:17
 
 
 

回复

190

帖子

10

TA的资源

一粒金砂(中级)

板凳
 
nmg 发表于 2017-6-30 09:58
标红的地方是什么意思

仿真的逆向推导 的断点关键于,这不是保存到草稿的?怎么发布出来的?!
此帖出自NXP MCU论坛
 
 
 

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

查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表