Skip to main content
shauns87
Associate III
August 27, 2014
Question

Qemu for STM32

  • August 27, 2014
  • 5 replies
  • 4719 views
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
    This topic has been closed for replies.

    5 replies

    Andrew Neil
    Super User
    August 27, 2014
    Posted on August 28, 2014 at 01:10

    RTFM?

    http://wiki.qemu.org/Manual

    http://wiki.qemu.org/Links

    A complex system that works is invariably found to have evolved from a simple system that worked.A complex system designed from scratch never works and cannot be patched up to make it work.
    shauns87
    shauns87Author
    Associate III
    August 28, 2014
    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
    Super User
    August 28, 2014
    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

    A complex system that works is invariably found to have evolved from a simple system that worked.A complex system designed from scratch never works and cannot be patched up to make it work.
    stm32forum
    Associate III
    August 28, 2014
    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
    shauns87Author
    Associate III
    September 3, 2014
    Posted on September 03, 2014 at 07:53

    @ Edje. Thanks for the help.