Here are the features regarding STM32 support in the standard (full) version of SimulIDE:
SystemInit();
RCC_EnableGPIOA();
GPIOA->MODER |= (1 << (5*2)); // PA5 output
while (1)
GPIOA->ODR ^= (1 << 5);
delay_ms(500);
- Schematic Editor: A graphical interface for designing and simulating electronic circuits.
- Microcontroller Emulator: A built-in emulator that mimics the behavior of the target MCU.
- Code Editor: A text editor with syntax highlighting and code completion.
- Debugger: A built-in debugger for testing and troubleshooting code.
If you want, I can: