Packet lungo ± 128 byte corrotto

/ENGLISH/
Use of a LoRa 32 WiFi card (V2) (receiver) and a Dragino shield on Arduino UNO (transmitter).
I need to send packets about 128 bytes long but as soon as I exceed 80 bytes the packet arrives corrupt. The distance I would like to reach does not exceed 700 meters.

/ * Reception: WiFi LoRa 32 (V2) * /
LoRa.setPins(18, 14, 26);
if (LoRa.begin(868000000, false)) {
LoRa.setSpreadingFactor(6);
LoRa.setSignalBandwidth(250E3);
LoRa.setCodingRate4(5);
LoRa.setPreambleLength(8);
LoRa.setSyncWord(0x35);
LoRa.disableCrc();
return true;
}

/ * Transmission: Dragino + Arduino UNO * /
LoRa.setPins(10, 9, 2);
if (!LoRa.begin(868000000)) break;
LoRa.setSpreadingFactor(6);
LoRa.setSignalBandwidth(250E3);
LoRa.setCodingRate4(5);
LoRa.setPreambleLength(8);
LoRa.setSyncWord(0x35);
LoRa.disableCrc();

I also tried with two LoRa 32 (V2) WiFi cards and the simple examples available with libraries and many transmissions are ignored if the packet length becomes greater than about 80 bytes.

Can someone help me?
Thank you

/* ITALIAN*/

Utilizzo una scheda WiFi LoRa 32 (V2) (ricevente) e una shield Dragino su Arduino UNO (trasmittente).
Ho bisogno di trasmettere dei packet lunghi circa 128 byte ma appena supero gli 80 byte il packet arriva corrotto. La distanza che vorrei raggiungere non supera i 700 metri.
/Ricezione: WiFi LoRa 32 (V2)/
LoRa.setPins(18, 14, 26);
if (LoRa.begin(868000000, false)) {
LoRa.setSpreadingFactor(6);
LoRa.setSignalBandwidth(250E3);
LoRa.setCodingRate4(5);
LoRa.setPreambleLength(8);
LoRa.setSyncWord(0x35);
LoRa.disableCrc();
return true;
}

/Trasmissione: Dragino + Arduino UNO/
LoRa.setPins(10, 9, 2);
if (!LoRa.begin(868000000)) break;
LoRa.setSpreadingFactor(6);
LoRa.setSignalBandwidth(250E3);
LoRa.setCodingRate4(5);
LoRa.setPreambleLength(8);
LoRa.setSyncWord(0x35);
LoRa.disableCrc();

Ho provato anche con due schede WiFi LoRa 32 (V2) e i semplici esempi disponibili con le librerie e vengono ignorate moltissime trasmissioni se la lunghezza del packet diventa maggiore di circa 80 byte.

Qualcuno può aiutarmi ?
Grazie

https://heltec-automation-docs.readthedocs.io/en/latest/esp32/distance_test.html

Hope this document help you.