Skip to content
New issue

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

Use verbose for logging data buffer #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mipi_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static void mipi_display_write_data(spi_device_handle_t spi, const uint8_t *data
gpio_set_level(CONFIG_MIPI_DISPLAY_PIN_DC, 1);

ESP_ERROR_CHECK(spi_device_polling_transmit(spi, &transaction));
ESP_LOG_BUFFER_HEX_LEVEL(TAG, data, length, ESP_LOG_DEBUG);
ESP_LOG_BUFFER_HEX_LEVEL(TAG, data, length, ESP_LOG_VERBOSE);
}

static void mipi_display_read_data(spi_device_handle_t spi, uint8_t *data, size_t length)
Expand Down