Connect BCM920732 via UART to a device

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hey,

I am a student and doing an internship at a company and they develop bus system devices.

So I have to create a prototype. For this i have the Evaluation Board BCM920732_BLE_KIT. I should connect this board with

their bus devices and create a new Bluetooth interface to check the status of a bus device with e.g. LightBlue or a iPhone app later.

For this i would connect the BCM920732_BLE_KIT at TP 32/33  (UART) with this bus device.

Is that possible with Evaluation Board BCM920732_BLE_KIT?

Or i would need the BCM92073X_LE_KIT ?

In future broadcom moduls fittet as standard in this bus devices for their customers.

Thanks

Asper

0 Likes
1 Solution
Anonymous
Not applicable

Yes.

You can pass custom_puart_config to bleapp_set_cfg() as 4th argument.

const BLE_PROFILE_PUART_CFG custom_puart_config = {

    /*.baudrate   =*/ 115200,

    /*.txpin      =*/ PUARTDISABLE | GPIO_PIN_UART_TX, // 32

    /*.rxpin      =*/ PUARTDISABLE | GPIO_PIN_UART_RX, // 33

};

P32 and P33 are available as TPs on the EVB.

View solution in original post

0 Likes
2 Replies
Anonymous
Not applicable

Yes.

You can pass custom_puart_config to bleapp_set_cfg() as 4th argument.

const BLE_PROFILE_PUART_CFG custom_puart_config = {

    /*.baudrate   =*/ 115200,

    /*.txpin      =*/ PUARTDISABLE | GPIO_PIN_UART_TX, // 32

    /*.rxpin      =*/ PUARTDISABLE | GPIO_PIN_UART_RX, // 33

};

P32 and P33 are available as TPs on the EVB.

0 Likes
Anonymous
Not applicable

OK, thanks a lot.

I'll test it and report back .

0 Likes