Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions chirp/drivers/mml_jc8810.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,8 @@ class RT470Radio(JC8810base):
b"\x00\x00\x00\x42\x00\x20\xF0\x04",
b"\x00\x00\x00\x4A\x00\x20\xF8\x04",
b"\x00\x00\x00\x3A\x00\x20\xE8\x04", # fw 1.25A
b"\x00\x00\x00\x42\x00\x20\xec\x04", # fw 1.27A

b"\x00\x00\x00\x42\x00\x20\xEC\x04", # fw 1.27A
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a conflict with master since this change is already present

]

# pcb 2
Expand Down Expand Up @@ -1410,7 +1411,8 @@ class RT470XPlusRadio(RT470XRadio):
RT470X_ORIG = False # BT fingerprint will fall automatically here

# BT version
_fingerprint_bt = [b"\x01\x36\x01\x80\x04\x00\x05\x20" # fw v0.15
_fingerprint_bt = [b"\x01\x36\x01\x80\x04\x00\x05\x20", # fw v0.15
b"\x01\x30\x01\x80\x04\x00\x05\x20", # there is such a print
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess you're trying to add another BT fingerprint, but "there is such a print" does not make sense. Can you please replace this comment with the firmware version that matches the one you're trying to add?

]
_fingerprint = _fingerprint_bt

Expand Down
Loading