mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 19:40:20 +03:00
PEP8 radio/util/dsm2.py
Fix indentation and whitespace
This commit is contained in:
parent
9d13484291
commit
7dcd96d258
1 changed files with 10 additions and 8 deletions
|
@ -2,22 +2,24 @@ from __future__ import print_function
|
||||||
|
|
||||||
BITLEN_DSM2 = 16
|
BITLEN_DSM2 = 16
|
||||||
|
|
||||||
|
|
||||||
def sendByteDsm2(b):
|
def sendByteDsm2(b):
|
||||||
print("%02x:" % b, end=' ')
|
print("%02x:" % b, end=' ')
|
||||||
lev = 0
|
lev = 0
|
||||||
len = BITLEN_DSM2
|
len = BITLEN_DSM2
|
||||||
for i in range(9):
|
for i in range(9):
|
||||||
nlev = b & 1
|
nlev = b & 1
|
||||||
if (lev == nlev):
|
if lev == nlev:
|
||||||
len += BITLEN_DSM2
|
len += BITLEN_DSM2
|
||||||
else:
|
else:
|
||||||
print(len, end=' ')
|
print(len, end=' ')
|
||||||
# _send_1(nlev ? len-5 : len+3);
|
# _send_1(nlev ? len-5 : len+3);
|
||||||
len = BITLEN_DSM2
|
len = BITLEN_DSM2
|
||||||
lev = nlev
|
lev = nlev
|
||||||
b = (b>>1) | 0x80
|
b = (b >> 1) | 0x80
|
||||||
# _send_1(len+BITLEN_DSM2+3); // 2 stop bits
|
# _send_1(len+BITLEN_DSM2+3); // 2 stop bits
|
||||||
print(len+BITLEN_DSM2)
|
print(len + BITLEN_DSM2)
|
||||||
|
|
||||||
|
|
||||||
sendByteDsm2(24)
|
sendByteDsm2(24)
|
||||||
sendByteDsm2(17)
|
sendByteDsm2(17)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue