disable a bunch of print statements to speed things up

This commit is contained in:
2025-05-31 22:39:22 -06:00
parent 6ab68beb99
commit be88ee1937
2 changed files with 32 additions and 32 deletions

View File

@ -33,7 +33,7 @@ static ssize_t read_sensors(struct bt_conn *conn, const struct bt_gatt_attr *att
const char *value = attr->user_data;
size_t size = sizeof(sensors_raw_t);
LOG_INF("Attribute read, handle: %u, conn: %p, bytes: %d", attr->handle, (void *)conn, size);
// LOG_INF("Attribute read, handle: %u, conn: %p, bytes: %d", attr->handle, (void *)conn, size);
return bt_gatt_attr_read(conn, attr, buf, len, offset, value, size);
}