Question
IDE / toolchain for direct register access?
Hi. Any recommendations for an IDE and toolchain for a Nucleo board with STM32f3xx. I want to be close to the metal and would like to access registers directly example:
TIMER1_BASE->CR1 |= 0X0001; // Start timer
Capture[edge] = TIMER2_BASE->CCR1;
I want to avoid a bunch of pointer tricks and not have to dig though a lot of libraries.
