-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Fixed an issue with Drone battery drain. -Fixed an issue where DroneInfo used the indexs of the Titles rather than the correct values, causing drones to all move at the same speed and assume the same DroneID etc. -Added option to override key exchange in favour of preshared keys. -Moved some constants into AATC_Config
- Loading branch information
Scratchcat1
authored
Oct 17, 2017
1 parent
3c46db8
commit a0d2791
Showing
6 changed files
with
52 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
PRE_SHARED_ENCRYPTION_KEYS_ENABLE = False | ||
PRE_SHARED_AES_KEY = b"00000000000000000000000000000000" | ||
PRE_SHARED_IV_KEY = b"00000000000000000000000000000000" | ||
|
||
DEFAULT_AES_KEYSIZE = 32 | ||
ALLOWED_AES_KEYSIZES = [16,24,32] | ||
|
||
DEFAULT_RSA_KEYSIZE = 2048 | ||
|
||
|
||
DEFAULT_DRONE_BATTERY_VALUE = 100 | ||
DEFAULT_DRONE_ATWAYPOINT_SIZES = (0.001,0.001,5) | ||
DEFAULT_DRONE_COORDINATE = (0,0,0) | ||
|
||
|
||
DRONE_BATTERY_DRAIN_MULT = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters