cancel
Showing results for 
Search instead for 
Did you mean: 

Qemu for STM32

shauns87
Associate II
Posted on August 27, 2014 at 19:33

I have installed Qemu on windows. I want to know how to run it and install uClinux on it. I am planning to try some C application for STM32F103 platform.

#cross-post #rtfm
5 REPLIES 5
Andrew Neil
Evangelist II
Posted on August 28, 2014 at 01:10

RTFM?

http://wiki.qemu.org/Manual

http://wiki.qemu.org/Links

shauns87
Associate II
Posted on August 28, 2014 at 10:51

Hello Neil,

I have gone through the manuals. Here's where I am stuck.

I have installed the windows version of qemu. However, I am unable to find an application file with which I can run the program. There was no shortcut which was created on my desktop. Besides, in the program files folder also, I found a lot of application files for many platforms but when I click them nothing happens.

Regards,

Shashank

Andrew Neil
Evangelist II
Posted on August 28, 2014 at 10:55

If you're going to cross-post in multiple places, then you need to be sure to keep them all updated!

 

For qemu support, see: 

http://wiki.qemu.org/MailingLists

stm32forum
Associate II
Posted on August 28, 2014 at 16:52

You need to start it from the command line, something like thi;

qemu-system-arm -cpu cortex-m3 -nographic -monitor null -serial null -semihosting -kernel main.elf

http://cgi.cs.indiana.edu/~geobrown/stm32/Main/Simulation

  is simple example
shauns87
Associate II
Posted on September 03, 2014 at 07:53

@ Edje. Thanks for the help.