analyzer: fix warnings on standalone

pull/235/head
mwojcik 2023-05-29 10:03:44 +08:00
parent ddb3703f50
commit b6247f409d
1 changed files with 5 additions and 3 deletions

View File

@ -1,11 +1,13 @@
use alloc::{rc::Rc, vec::Vec};
use alloc::rc::Rc;
#[cfg(has_drtio)]
use alloc::vec::Vec;
use core::cell::RefCell;
use libasync::{smoltcp::TcpStream, task};
use libboard_artiq::drtio_routing;
use libboard_zynq::{smoltcp::Error, timer::GlobalTimer};
use libcortex_a9::{cache, mutex::Mutex};
use log::{debug, error, info, warn};
use log::{debug, info, warn};
use crate::{pl, proto_async::*};
@ -147,7 +149,7 @@ async fn handle_connection(
remote.data,
),
Err(e) => {
error!("Error getting remote analyzer data: {}", e);
warn!("Error getting remote analyzer data: {}", e);
(
Header {
total_byte_count: total_byte_count,