請問我透過nRF APP的藍芽功能從FFF1寫入值,我要如何在我寫完之後Notify結果回來到nRF APP上面
是否有範例程式可以參考?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
需要将fff1这个特征设置成notify和write权限,basic_ble下有char4是有notify的,notify调用的是设置特征的函数,你可以看下。最重要的两个文件是simple_gatt_profile.c(在sdk的source/ti/bleapp/profile下)和app_simple_gatt.c(在sdk的example/rtos/LP_EM_CC2340R5/ble5stack/basic_ble/app/profile下),有个simpleGatt_notifyChar4函数。你可以通过CCS导入basic_ble例程修改即可。
simple_gatt_profile.c與app_simple_gatt.c有找到 如果我要把basic_ble裡的值Notify出去 像是這樣嗎?
但是這感覺只有設定,好像沒有Notify出去
想問有沒有更詳細的設定? 感謝!
了解 我直接在simpleGattprofile_SetParameter的Char4上修改 帶入我自己宣告的值 但是呼叫SimpleGatt_notifyChar4()後,在nRF上只有notify一個Byte是我要的 後面全部是0,我想他應該是哪裡有限制到notify的長度,但是我找不到他在那裡限制,想問notify要如何解除限制長度
那能夠自動notify嗎? 我發現simpleGattprofile_SetParameter並不能達到我的需求,這個Function還是得在nRF去read才會有值
有找到一個GATT_Notification 不知道這個是否能夠自動notify? 如果是有什麼範例Code嗎?
我似乎找到原因了,readAttrCB那邊只存了一個Byte,所以才只有一個Byte被Notify。
但是我發現這不符合我的預期,我想要讓CC2340可以在我Write指令進去,讀取到值之後,可以自動notify出來
所以我在SimpleGattProfile_writeAttrCB得到Value之後呼叫GATT_Notification(),但呼叫之後會跑進去iCall_abort()的while裡 不知是否有其他解決方法