Skip to content

Instantly share code, notes, and snippets.

@4gra
Last active March 13, 2017 23:19
Show Gist options
  • Save 4gra/694608c618464f44fcd8544c22a4bce2 to your computer and use it in GitHub Desktop.
Save 4gra/694608c618464f44fcd8544c22a4bce2 to your computer and use it in GitHub Desktop.
switching modes
# Mode switches: looks like in messages matching:
# 0e 00 18 03 e0 00 01 0? 00 ff ff ff ff ff ff
# The low half of byte 8 is the mode marker.
# When the mode is "0" (FM) there's another page of information:
# 0e 00 10 98 70 00 01 ff ff 10 00 00 01 00 00
# The '8' bit of byte 3 seems to mark the page number
# optical in to analogue in
< 0e 00 18 03 e0 00 01 0b 00 ff ff ff ff ff ff
# analogue to md
< 0e 00 18 03 e0 00 01 04 00 ff ff ff ff ff ff
# md to tape
< 0e 00 18 03 e0 00 01 05 00 ff ff ff ff ff ff
# tape to cd
< 0e 00 18 03 e0 00 01 02 00 ff ff ff ff ff ff
# cd to FM
< 0e 00 18 03 e0 00 01 00 00 ff ff ff ff ff ff
< 0e 00 10 98 70 00 01 ff ff 10 00 00 01 00 00
# FM to optical
< 0e 00 18 03 e0 00 01 08 00 ff ff ff ff ff ff
# optical to analogue (again)
< 0e 00 18 03 e0 00 01 0b 00 ff ff ff ff ff ff
# changes in mode were sometimes accompanied by other (unchanging) values:
< 05 00 18 03 c0 70
< 05 00 18 90 c0 70
< 05 00 18 b0 c0 70
< 05 00 18 cf c0 00
< 05 00 18 a4 c0 00
# I haven't attempted to decode these yet.
@4gra
Copy link
Author

4gra commented Mar 13, 2017

filtered to return just the 0xe and 0x5s.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment