Had a moment to look at it.
Downloaded the firmware here:
https://www.intl.onkyo.com/support/firmware/tx-nr509.htmlDecrypted it using this:
http://divideoverflow.com/2014/04/decrypting-onkyo-firmware-files/Analized the output files: There's a kernel, a squashfs filesystem and then two suspicious files containing lot of menu strings:
- of2.ONKAVR0007_00NA00EA00NA.NA103
- of3.ONKAVR0007_00NA00EA00NA.NA108
Knowing the controller UPD70F3746GJ (
datasheet] has 1MB of flash, perhabs one of them is a flash update.
- The display is connected to CSIB5 (SPI5 for normal people).
- CSB5 base address is FFFFFD50
- Chip Enable is connected to P68, so address FFFFF40D (PORT6H), bit 0
Open of3.ONKAVR0007_00NA00EA00NA.NA108 in ghidra, uncheck "Show only recommended Language", choose V850 processor.
First find where the SPI is configured:

- FFFFFD50 (CB5CTL0) = 0xF1
- FFFFFD51 (CB5CTL1) = 5
- FFFFFD52 (CB5CTL2) = 0
Comparing these values with the datasheet: Master, clock/64, the clock mode matches the waveform...
And wait! LSB first! This will mean we need to search reversed bytes in the code!
So this:
07 F0
27 04
05 87 07
03 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0
Becomes this in code:
E0 0F
E4 20
A0 E1 E0
C0 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03
Let's find those values...kind of! But slightly different:

It's sending this. Maybe I looked in the wrong place of the code, but looks extremely similar and has same pattern.
E0 0F
E4 F0
A0 F0 F0
C0 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03
Which would be seen like this by the analyzer:
07 F0
27 0F
05 0F 0F
03 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0
Compared again againt what you got, it's like it picked up some noise:
07 F0
27 04
05 87 07
03 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0 C0
So maybe your capture data is wrong?
Also, perhabs the controller also expects LSB first, so these would be the actual commands?
Now let's find where somewhere where CE is toggled.
Looks like it's this part, but didn't inspect any longer:

Well, that's all, now it's time for you to dive into the binaries!
Extracted firmware here:
https://anonfiles.com/9fEb47D8yf/onkyo_zip