You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the notification example on a BLE sensor streaming a value at 25Hz (I verified this value was correct by other means).
The connection and printing works alright, but when I measure time between two notifications, I'm only reaching 22Hz.
Any idea on where that would come from?
I'm measuring time between the end of the notification function, and the start of the next one, with that function :
`uint64_t get_posix_clock_time ()
{
struct timespec ts;
I'm using the notification example on a BLE sensor streaming a value at 25Hz (I verified this value was correct by other means).
The connection and printing works alright, but when I measure time between two notifications, I'm only reaching 22Hz.
Any idea on where that would come from?
I'm measuring time between the end of the notification function, and the start of the next one, with that function :
`uint64_t get_posix_clock_time ()
{
struct timespec ts;
}`
And I also experienced the issue when encapsulating it in a C++ program and measuring with , so I'm quite sure about my frequency measurement.
The text was updated successfully, but these errors were encountered: