1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#![no_std]

mod bulk_only_transport;

pub use bulk_only_transport::{
    BulkOnlyTransport,
    CommandBlockWrapper,
    TransferState,
    Error,
};

mod logging {
    pub use itm_logger::*;

    #[cfg(feature = "trace-bot-headers")]
    pub use itm_logger::trace as trace_bot_headers;
    #[cfg(not(feature = "trace-bot-headers"))]
    pub use itm_logger::stub as trace_bot_headers;

    #[cfg(feature = "trace-bot-states")]
    pub use itm_logger::trace as trace_bot_states;
    #[cfg(not(feature = "trace-bot-states"))]
    pub use itm_logger::stub as trace_bot_states;

    #[cfg(feature = "trace-bot-bytes")]
    pub use itm_logger::trace as trace_bot_bytes;
    #[cfg(not(feature = "trace-bot-bytes"))]
    pub use itm_logger::stub as trace_bot_bytes;

    #[cfg(feature = "trace-bot-zlp")]
    pub use itm_logger::trace as trace_bot_zlp;
    #[cfg(not(feature = "trace-bot-zlp"))]
    pub use itm_logger::stub as trace_bot_zlp;

    #[cfg(feature = "trace-bot-buffer")]
    pub use itm_logger::trace as trace_bot_buffer;
    #[cfg(not(feature = "trace-bot-buffer"))]
    pub use itm_logger::stub as trace_bot_buffer;
    
    #[cfg(feature = "trace-usb-control")]
    pub use itm_logger::trace as trace_usb_control;
    #[cfg(not(feature = "trace-usb-control"))]
    pub use itm_logger::stub as trace_usb_control;
}