dmm/bm86x.c: reduce verbosity level (packet request)

Remove a debug message from the Brymen BM86x meter's packet request method.
This commit is contained in:
Gerhard Sittig 2019-06-29 18:44:44 +02:00 committed by Uwe Hermann
parent 60117e6e9a
commit 0fb4512125
1 changed files with 0 additions and 1 deletions

View File

@ -41,7 +41,6 @@ SR_PRIV int sr_brymen_bm86x_packet_request(struct sr_serial_dev_inst *serial)
{ {
static const uint8_t request[] = { 0x00, 0x00, 0x86, 0x66, }; static const uint8_t request[] = { 0x00, 0x00, 0x86, 0x66, };
sr_spew("%s() sending request", __func__);
serial_write_nonblocking(serial, request, sizeof(request)); serial_write_nonblocking(serial, request, sizeof(request));
return SR_OK; return SR_OK;