add CONFIG to function call

This commit is contained in:
KF7EEL 2020-12-24 13:08:35 -08:00
parent ca5baebda4
commit 4cff528c5a
3 changed files with 3 additions and 3 deletions

View File

@ -1184,7 +1184,7 @@ if __name__ == '__main__':
# HBlink instance creation
# Run aprs_upload loop
aprs_upload()
aprs_upload(CONFIG)
logger.info('(GLOBAL) HBlink \'bridge.py\' -- SYSTEM STARTING...')
for system in CONFIG['SYSTEMS']:
if CONFIG['SYSTEMS'][system]['ENABLED']:

View File

@ -282,7 +282,7 @@ if __name__ == '__main__':
# HBlink instance creation
# Run aprs_upload loop
aprs_upload()
aprs_upload(CONFIG)
logger.info('HBlink \'bridge_all.py\' -- SYSTEM STARTING...')
for system in CONFIG['SYSTEMS']:
if CONFIG['SYSTEMS'][system]['ENABLED']:

View File

@ -963,7 +963,7 @@ if __name__ == '__main__':
# HBlink instance creation
# Run aprs_upload loop
aprs_upload()
aprs_upload(CONFIG)
logger.info('(GLOBAL) HBlink \'HBlink.py\' -- SYSTEM STARTING...')
for system in CONFIG['SYSTEMS']:
if CONFIG['SYSTEMS'][system]['ENABLED']: