We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to send large LORA-messages (directly from node to node) for testing reasons (not operational) with
#define RF_FREQUENCY 868000000 // Hz #define TX_OUTPUT_POWER 15 // dBm #define LORA_BANDWIDTH 1 // [0: 250kHz, #define LORA_SPREADING_FACTOR 7 // [SF7..SF12] #define LORA_CODINGRATE 1 // [1: 4/5, #define LORA_PREAMBLE_LENGTH 0 // Same for Tx and Rx #define LORA_SYMBOL_TIMEOUT 0 // Symbols #define LORA_FIX_LENGTH_PAYLOAD_ON false #define LORA_IQ_INVERSION_ON false #define RX_TIMEOUT_VALUE 1000 #define BUFFER_SIZE 300 // Define the payload size here
#define RF_FREQUENCY 868000000 // Hz
#define TX_OUTPUT_POWER 15 // dBm
#define LORA_BANDWIDTH 1 // [0: 250kHz,
#define LORA_SPREADING_FACTOR 7 // [SF7..SF12]
#define LORA_CODINGRATE 1 // [1: 4/5,
#define LORA_PREAMBLE_LENGTH 0 // Same for Tx and Rx
#define LORA_SYMBOL_TIMEOUT 0 // Symbols
#define LORA_FIX_LENGTH_PAYLOAD_ON false
#define LORA_IQ_INVERSION_ON false
#define RX_TIMEOUT_VALUE 1000
#define BUFFER_SIZE 300 // Define the payload size here
However the ESP stops receiving packets bigger than 64 chars and starts receiving again the first letters, after the packet size is greater than 256.
Is there a bufferlimit or something else, which cause an receiving stop at bigger packets than 64 chars?
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to send large LORA-messages (directly from node to node) for testing reasons (not operational) with
#define RF_FREQUENCY 868000000 // Hz
#define TX_OUTPUT_POWER 15 // dBm
#define LORA_BANDWIDTH 1 // [0: 250kHz,
#define LORA_SPREADING_FACTOR 7 // [SF7..SF12]
#define LORA_CODINGRATE 1 // [1: 4/5,
#define LORA_PREAMBLE_LENGTH 0 // Same for Tx and Rx
#define LORA_SYMBOL_TIMEOUT 0 // Symbols
#define LORA_FIX_LENGTH_PAYLOAD_ON false
#define LORA_IQ_INVERSION_ON false
#define RX_TIMEOUT_VALUE 1000
#define BUFFER_SIZE 300 // Define the payload size here
However the ESP stops receiving packets bigger than 64 chars and starts receiving again the first letters, after the packet size is greater than 256.
Is there a bufferlimit or something else, which cause an receiving stop at bigger packets than 64 chars?
Thanks
The text was updated successfully, but these errors were encountered: