#[allow(unused_imports)]
use super::*;
use crate::blocks::SourceBlock;
use alloc::string::String;
pub struct BusLoggerConfig {
pub source_name: String,
pub group_name: String,
pub data_channel_name: String,
pub data_channel_bits: u32,
pub source_block: SourceBlock,
}