Q-Code User Manual
Ver. 7.0 2021/11/30
226
Ex.
X0=0x3F, X1=0x01 for 16-bit mode.
TR1: IR_TX(X1:X0)
; IR Code = 0x13F.
4.17.4 IR_RX_ON
Activate IR receiving function. IR code cannot be received if this function is not activated.
Note: NY9T does not support this command.
Ex.
IR_RX_ON
; Activate the IR reception function.
4.17.5 IR_RX_OFF
Deactivate IR receiving function.
Note: NY9T does not support this command.
Ex.
IR_RX_OFF
; Deactivate IR reception function.
4.17.6 IR_RX = data?Path
Jump to Path when received IR code equals to data.
Note: NY9T does not support this command.
Ex.
IR_RX = 0? Path
; Jump to Path if received code is 0.
4.17.7 IR_RX != data?Path
Jump to Path if received IR code not equal to data.
Note: NY9T does not support this command.
Ex.
IR_RX != 0? Path
; Jump to Path if received code is not 0.
4.17.8 [Rl, Rk, Rj, Ri] = IR_RX
Write the received IR code to RAM. Ri=bit0 ~ 3, Rj=bit4 ~ 7, Rk=bit8 ~ 11, Rl=bit12 ~ 15.
Note:
1. NY9T does not support this command.
2. Using this command before receiving IR data will get unknown data.
Ex.
IR_Bit = 12
[R0] = IR_RX
; Write Bit[3:0] of IR code to R0.
[R1, R0] = IR_RX
; Write Bit[3:0] of IR code to R0, Bit[7:4] to R1.
[R2, R1, R0] = IR_RX
; Write Bit[3:0] of IR code to R0, Bit[7:4] to R1,