Update fc_block_decode.py random image_count initialization

fc-fctelem
Alan Johnston 10 months ago committed by GitHub
parent def9cad9fc
commit 47eb19a20c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,6 +2,7 @@ import sys
from os import system
from time import sleep
import logging
import random
logging.basicConfig(format='%(message)s')
# logging.warning('CC-Warning!')
@ -11,7 +12,7 @@ FC_SW = 50
FC_PAYLOAD = 55
extended = 1
image_count = 0
image_count = random.randint(0, 255)
if __name__ == "__main__":
debug_mode = False

Loading…
Cancel
Save

Powered by TurnKey Linux.