how to do simple data transfer using bluetooth serail terminal?
how to do simple data transfer using bluetooth serail terminal?
how much time the device will take to advertise the data? and how do i calculate?
This depends on your advertising configuration and payload. You could use the Online Power Profiler to estimate how long each advertising / transfers will take.
Best regards,
Karl
| Sleep | 1 | Push | BSP_EVENT_WAKEUP |
| Sleep | 2 | Push | BSP_EVENT_CLEAR_BONDING_DATA |
| Startup | 2 | Hold | BSP_EVENT_CLEAR_BONDING_DATA |
| Startup | 4 | Hold | BSP_EVENT_DFU |
| Awake | 2 | Long Push | BSP_EVENT_WHITELIST_OFF |
| Connected | 1 | Long push | BSP_EVENT_DISCONNECT |
| Not Connected | 1 | Release | BSP_EVENT_SLEEP |
for (num = 0; ((num < BUTTONS_NUMBER) && (err_code == NRF_SUCCESS)); num++)
{
err_code = bsp_event_to_button_action_assign(num, BSP_BUTTON_ACTION_PUSH, BSP_EVENT_DEFAULT);
}
this was the function to assign the buttons to appropriate bsp events but in that function why default event passed ? which means all the buttons assinged to default events then how come button1 assigned to bsp_event_wakeup?
will online power profiler requires power profiler kit ?
where actually transmission power set api called and how to change the transmission power?