Constant stm32ral::cortex_m::armv7em::itm::ITM[][src]

pub const ITM: *const RegisterBlock = 0xe0000000 as *const _; // {0xe0000000 as *const cortex_m::peripherals::itm::RegisterBlock}
Expand description

Raw pointer to ITM

Dereferencing this is unsafe because you are not ensured unique access to the peripheral, so you may encounter data races with other users of this peripheral. It is up to you to ensure you will not cause data races.

This constant is provided for ease of use in unsafe code: you can simply call for example write_reg!(gpio, GPIOA, ODR, 1);.