File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ all: release
2
2
3
3
test :
4
4
@echo Running tests...
5
- python -m tests.all
5
+ python3 -m tests.all
6
6
7
7
clean :
8
8
@echo Cleaning...
Original file line number Diff line number Diff line change @@ -472,13 +472,13 @@ def validateRadioState(self):
472
472
RNS .log ("Bandwidth mismatch" , RNS .LOG_ERROR )
473
473
self .validcfg = False
474
474
if (self .txpower != self .r_txpower ):
475
- RNS .log ("TX power mismatch" , RNS .LOG_ERROR )
475
+ RNS .log ("TX power mismatch: " + str ( self . txpower ) + " vs " + str ( self . r_txpower ) , RNS .LOG_ERROR )
476
476
self .validcfg = False
477
477
if (self .sf != self .r_sf ):
478
478
RNS .log ("Spreading factor mismatch" , RNS .LOG_ERROR )
479
479
self .validcfg = False
480
480
if (self .state != self .r_state ):
481
- RNS .log ("Radio state mismatch" , RNS .LOG_ERROR )
481
+ RNS .log ("Radio state mismatch: " + str ( self . state ) + " vs " + str ( self . r_state ) , RNS .LOG_ERROR )
482
482
self .validcfg = False
483
483
484
484
if (self .validcfg ):
You can’t perform that action at this time.
0 commit comments