Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
581 views

Execution without OS

How do you compile a C program in to a valid ELF format(or RAW format) so that it can be executed directly from RAM without any OS? Assume that a bootloader exists which is capable of loading the code ...
7
votes
4answers
763 views

TCP/IP Protocol stack without an OS

I'm looking for a TCP/IP stack that can be used without an OS. Our customer has an "aversion" to interrupts and doesn't want a real OS on a embedded board we're building. It's desirable to move as ...
5
votes
3answers
651 views

MBR Booting from DOS

For a project I would like to invoke the MBR on the first harddisk directly from DOS. I've written a small assembler program that loads the MBR in memory at 0:7c00h an does a far jump to it. I've put ...
4
votes
1answer
200 views

How to write dynamic loader for bare-metal arm-application

I'm working on a project based on arm9 processor. We use only bare-metal without any operating system, so unfortunately we have no support for shared libraries / dynamic loader yet. I would like to ...
4
votes
5answers
239 views

How much should the average developer know about the bare metal?

It struck me the other day that I know nearly nothing about the hardware I expect my software to run on. I've been a dev for around 5 years but I haven't looked into hardware theory/design since i ...
2
votes
1answer
75 views

Profiling on baremetal embedded systems (ARM)

I am wondering how you profile software on bare metal systems (ARM Cortex a8)? Previously I was using a simulator which had built-in benchmark statistics, and now I want to compare results from real ...
2
votes
3answers
64 views

Object-Oriented Languages on Bare Metal

I'm aware of C++ and Object Pascal, but are there any other object-oriented languages whose compilers currently can compile them to run on a machine with no operating system? If there are, do they ...
2
votes
5answers
338 views

Software testing for a bare-metal system

I am writing a project in C++ for an embedded system with no OS support; almost no library support. Very bare-metal. Hence, a fair amount of my code is tightly coupled(e.g., software triggered ...
1
vote
1answer
64 views

How far from imperative can language implementations be where compiler/interpreter emits to metal

I didn't want to ask this as an 'answer' to A Question Someone Beat Me to by 2 Years so I did a new question. It appears from an answer there (See N. Ramsey where he writes: "...However, if you ...
1
vote
2answers
182 views

Porting functions from OpenCV

I want to copy some functions from OpenCV library to my embedded application. Rewriting them to use standard data structures is really painful, so I tried the following: bfin-elf-g++ -c ...
0
votes
1answer
46 views

Assembly for Bare Metal BeagleBoard

I am just recently trying to get into embedded programming and am looking for a few resources. I've done quite a bit of programming in higher level languages but have always been fascinated by how ...
0
votes
1answer
84 views

Linking with newlib: undefined reference to memcpy

I'm trying to build an arm boot loader, and it's relying on newlib to supply some system calls (like memcpy). When I run: arm-elf-ld -static -L /usr/arm-elf/lib/thumb/ -lc -nostdlib -nostartfile ...
0
votes
2answers
31 views

makemenu config equivalent for windows

Is there any make menuconfig like utility for windows ? I have a software stack for baremental embedded systems that needs some configuration before building (build environment is under windows but ...
0
votes
0answers
69 views

run a single task on a bare bones operating system

I would like to cross compile an ansi c program from linux for a the barest bare boned operating system that can read a single file and write to a single file on an x86. Then I would like to reboot ...