Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Semihosting Host IO Support

Gareth McMullin edited this page Aug 1, 2014 · 7 revisions

Standard ARMv6-M/ARMv7-M semihosting is supported, i.e. you can build your application in a special way to have calls to certain functions (open(), close(), read(), write(), lseek(), rename(), unlink(), stat(), isatty(), system()) executed on the debugging host itself. To make use of these facilities, add --specs=rdimon.specs and -lrdimon to the linker flags for your firmware.

If you're going to use stdin, stdout or stderr (e.g. via printf()/scanf()) and you're not using newlib's C runtime (by specifying -nostartfiles), you need to add this to your initialisation:

void initialise_monitor_handles(void);
initialise_monitor_handles();

NOTICE: The content of this wiki has been moved to http://black-magic.org website. Please update your links.

Clone this wiki locally