bugfix lora send queue size display

This commit is contained in:
Verkehrsrot 2019-07-14 16:52:18 +02:00
parent 6cc962ef20
commit 912da7eace

View File

@ -421,7 +421,7 @@ esp_err_t lora_stack_init() {
return ESP_FAIL; return ESP_FAIL;
} }
ESP_LOGI(TAG, "LORA send queue created, size %d Bytes", ESP_LOGI(TAG, "LORA send queue created, size %d Bytes",
SEND_QUEUE_SIZE * PAYLOAD_BUFFER_SIZE); SEND_QUEUE_SIZE * sizeof(MessageBuffer_t));
ESP_LOGI(TAG, "Starting LMIC..."); ESP_LOGI(TAG, "Starting LMIC...");