Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users struggling to trigger pairing mode with triple-tap #429

Open
microbit-carlos opened this issue May 9, 2024 · 0 comments
Open

Users struggling to trigger pairing mode with triple-tap #429

microbit-carlos opened this issue May 9, 2024 · 0 comments
Milestone

Comments

@microbit-carlos
Copy link
Collaborator

microbit-carlos commented May 9, 2024

We've had some reports of users struggling to trigger pairing mode using triple-pair.

We have one known DAPLink issue when on battery power:

But we don't think it's likely to only be that issue.

The current theory right now is that maybe the time between resets is too low at 500 ms:

void MicroBit::periodicCallback()
{
// Zero our reset_count once the micro:bit has been running for half a second
static int timeout = 500 / (SCHEDULER_TICK_PERIOD_US/1000);
if (timeout-- == 0 && microbit_no_init_memory_region.resetClickCount != 0)
{
microbit_no_init_memory_region.resetClickCount = 0;
status &= ~DEVICE_COMPONENT_STATUS_SYSTEM_TICK;
}
}

We need to check with users first to identify the problem they are experiencing, which could result in an increase of this time.

@microbit-carlos microbit-carlos added this to the v0.2.69 milestone Aug 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant