请教一下,
1.怎么在CC2640正常从机工作状态下用手机APP改广播名?
2.TI是不是有个可以改Secondary mac address的软件?
3.收发一连串数据有什么官方库函数可用?
像是在SimpleBLEPeripheral工程中,SimpleProfile_GetParameter、SimpleProfile_SetParameter可以吗???
4.在simpleProfileAttrTbl结构体增加自定义的UUID和服务时:
#define GATT_PERMIT_READ 0x01 //!< Attribute is Readable
#define GATT_PERMIT_WRITE 0x02 //!< Attribute is Writable
#define GATT_PERMIT_AUTHEN_READ 0x04 //!< Read requires Authentication
#define GATT_PERMIT_AUTHEN_WRITE 0x08 //!< Write requires Authentication
#define GATT_PERMIT_AUTHOR_READ 0x10 //!< Read requires Authorization
#define GATT_PERMIT_AUTHOR_WRITE 0x20 //!< Write requires Authorization
#define GATT_PERMIT_ENCRYPT_READ 0x40 //!< Read requires Encryption
#define GATT_PERMIT_ENCRYPT_WRITE 0x80 //!< Write requires Encryption
我想问一下,Only Read、Only Write、Read and Write、Notify的服务分别该采用以上哪些标志?
Sir Lu:
回复 Susan Yang:
谢谢,我试一试
Sir Lu:
回复 Alvin Chen:
好的,我去看看
Sir Lu:
回复 Alvin Chen:
请教一下,在CC2640与手机通信期间,如何实现通过BLE通信修改2640的ble广播名?
Sir Lu:
回复 Susan Yang:
在SimpleBLEPeripheral例程里,我在SBP_CHAR_CHANGE_EVT事件后使能PWM驱动蜂鸣器board_pwm_start(4096, 50); Util_startClock(&BuzzerClock);后,蜂鸣器就不会停下来了,SBP_BUZZER_EVT事件里的board_pwm_stop();并没有触发,请教一下,正确定时驱动PWM蜂鸣器是该怎么做的?