In a bare-metal environment, the software runs directly on the hardware (CPU, microprocessor, etc) without the intermediary layer of an operating system.
0
votes
0answers
35 views
Is there a system for realizing digital logic functions without branches?
I was going to ask this on Electric Engineering, but decided it's more related to programming.
With digital logic, we can reduce truth tables to minimized functions using Karnaugh diagrams or ...
-2
votes
1answer
78 views
ARM development quickstart [closed]
I want to try developing with ARM platform, particularly I'm interested in bare metal. I'm trying to start that using QEMU but this way of learning lacks comprehensive tutorials and it inevitably adds ...
0
votes
0answers
69 views
RTOS or Bare Metal? [closed]
We are planning on starting a new project using an Altera's FGPA with a hard core ARM Cortex A9 dual core in it (Cyclone V SoC)
The most important stuff for my development is multi-threading and USB ...
2
votes
1answer
86 views
Understanding assembly stack manipulation
I'm writing a sdram test program on a bare-metal ARM. I wrote it in C, but now I want to modify the generated assembly to prevent the program from using sdram, which implies, among other things, no ...
2
votes
2answers
68 views
Section load address and execution address in linker script
I'm writing a customized linker script for a bare-metal ARM application. The application is stored in a flash memory, at the moment I have a bootup code copying the whole application in SDRAM, and ...
4
votes
2answers
99 views
Relocation in assembly
I have a boot-up code for a bare-metal ARM written in assembly and I'm trying to understand how it works. The binary is written in some external Flash, and is copying parts of itself in RAM at ...
2
votes
1answer
46 views
type 1 hypervisor boot sequence
I have a very basic query with type 1 virtualization. I am really trying to understand the boot process.
A type 1 hypervisor basically runs at the bare metal level, communicating directly to ...
3
votes
1answer
189 views
Software interrupt exception or undefined instruction exception?
I am running a program on a bare-metal ARM (v5TE-compliant) with a JTAG connector and gdb. The program runs from some SDRAM in supervisor mode, and uses only arm instructions.
At some point an ...
1
vote
1answer
123 views
How to get a call stack from a SoftWare Interrupt exception
I'm trying to debug a program running on a bare-metal ARM platform using gdb. At some point an SWI (Software Interrupt) exception is generated. However the back-trace doesn't show what generated the ...
-2
votes
2answers
113 views
arm (bare metal): call binary file as function
I have AT91Bootloader for AT91sam9 ARM controller. I need add some extra hardware initialization, but I have only compiled .bin file.
I loaded bin file to memory and tried to call it:
((void ...
-2
votes
1answer
61 views
Bare metal install OS from network server [closed]
Basically, we want to install operating system to bare metal.
Just like cobbler(https://github.com/cobbler/cobbler) does.
However, the difference is that:
We want to install Linux or windows ...
1
vote
2answers
130 views
What's the role of __irq in ARM System Programming?
I understand __irq is used to define Interrupt Service Routine function for ARM7(v4) architecture. But what changes does it make to the function?
As per ARM Information Center:
The __irq keyword ...
0
votes
1answer
203 views
Microblaze Cross Compile
Does anyone know how to use gcc to compile a bare-metal program for xilinx's microblaze processor?
It is very easy to do this with xilinx sdk, but now I am trying to integrate the microblaze build ...
0
votes
1answer
80 views
BIOS for baremetal programs on x86
Is it a good idea to use the BIOS interrupts INT10? Or should I consider coreboot, UFEI or openFirmware? Are these compatible? What should I use to display to the screen?
0
votes
0answers
98 views
How to run Linux user space applications on my bare metal program [closed]
I am new to Linux.
How to run a Linux user space program on my bare metal program which is loaded by GRUB, because I need some Linux OS support in my bare metal program? Also how can I share ...
1
vote
1answer
427 views
Configuring baretail to show logs over the network
I am looking for a log reader that updates real time. Also, my log files are on a server running linux while i'm on a windows system. I found bare-metal's baretail, which I'm having difficulty to ...
0
votes
0answers
79 views
Runtime assembler error on coreb of bf561
Could somebody give me some clue about how to resolve this error:
At runtime my program crash on bare metal coreb:
.....
COREB: test mdct36
...
1
vote
1answer
969 views
How do I know where the .data section needs to get the init data from? (gcc linker)
When building a gcc based bare metal mcu project you need to take care of the initialization of the .data and .bss sections during startup.
The .bss section is quite easy since I just fill the entire ...
1
vote
1answer
90 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 ...
0
votes
3answers
662 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 ...
3
votes
1answer
522 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 ...
0
votes
1answer
1k 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
72 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 ...
3
votes
3answers
126 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 ...
4
votes
1answer
550 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 ...
9
votes
6answers
3k 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 ...
1
vote
0answers
121 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 ...
5
votes
3answers
852 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 ...
1
vote
2answers
346 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 ...
4
votes
5answers
270 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 ...
9
votes
4answers
670 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 ...
3
votes
5answers
450 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 ...
