Need help about LoRa IQ INVERSION

I need to made cube cell broad to receive Request command in LoRa normal mode (inversion IQ is flase) and send data back in LoRa inversion IQ mode (inversion IQ= true) by change parameter in Radio.SetRxConfig and Radio.SetTxConfig like this

Radio.SetTxConfig( MODEM_LORA, TX_OUTPUT_POWER, 0, LORA_BANDWIDTH,
LORA_SPREADING_FACTOR, LORA_CODINGRATE,
LORA_PREAMBLE_LENGTH, LORA_FIX_LENGTH_PAYLOAD_ON,
true, 0, 0, true, 3000 );

Radio.SetRxConfig( MODEM_LORA, LORA_BANDWIDTH, LORA_SPREADING_FACTOR,
LORA_CODINGRATE, 0, LORA_PREAMBLE_LENGTH,
LORA_SYMBOL_TIMEOUT, LORA_FIX_LENGTH_PAYLOAD_ON,
0, true, 0, 0, false, true );

But it receive and transmit data in LoRa normal mode. I don’t know do something wrong or have other way to set LoRa Rx and Tx work in different inversion mode.

Here is a LoRa normal mode receiver example:

And here is the key to success node-to-node communication:
https://heltec-automation-docs.readthedocs.io/en/latest/esp32/frequently_asked_questions.html#node-to-node-communication