Merge pull request #6123 from etracer65/beacon_arming_guard_time

Reduce beacon arming guard time to 1.2 seconds
This commit is contained in:
Michael Keller 2018-06-16 13:40:02 +12:00 committed by GitHub
commit 4466c6f5e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
#define BEEPER_GET_FLAG(mode) (1 << (mode - 1))
#ifdef USE_DSHOT
#define DSHOT_BEACON_GUARD_DELAY_US 2000000 // Time to separate dshot beacon and armining/disarming events
#define DSHOT_BEACON_GUARD_DELAY_US 1200000 // Time to separate dshot beacon and armining/disarming events
// to prevent interference with motor direction commands
#endif