Ein minimales Arm -Betriebssystem für den Raspberry Pi Zero.
Dies ist mein persönliches Bonusprojekt für den Kurs "Embedded Systems Design" [ECE1258].
Derzeit ist es:
Sobald das Betriebssystem gestartet und alles initialisiert wird, wird die Ausführung an eine Demonstrationskonsole übergeben, auf die über /dev /ttyusb0 zugegriffen werden kann.
Die Demo -Konsole akzeptiert einige Befehle:
help
Displays a list of available commands
intr
Setups a repeatable IRQ interrupt that blinks the LED light of
the Pi once every second.
proc
Setups the scheduler, launches a kernel and a user process and
switches between them seamlessly.
lock
Same as proc, but also utilizes mutex locks.
Control is still switched continuously between the two processes;
however, they share a lock, and they sequentially un/lock it.
fpuo
Performs a floating point operation using the floating point coprocessor.
Proof can be found in the kernel.list file that is produced during
compilation if one looks for the fpu_mult details.
Note that separate function must be used to produce the result
(fpu_mult in common/stdlib.c), otherwise the compiler just
precalculates the result.
cd buildmakekernel.img auf die erste Partition Ihrer SD -Karte. cd scripts./makerLoader.sh $root
├ build
├ common
├ docs
├ drivers
├ include
│ ├ common
│ └ drivers
├ kernel
└ scripts
Armarchitektur Referenzhandbuch, ARMV7-A und ARMV7-R Edition
ARM1176JZF-S Technisches Referenzhandbuch, Revision R0P7
BCM2835 Arm -Peripheriegeräte
Osdev.org raspberrypi Tutorial
Raspberrypi Zero Baremetal Beispiele von Dwelch67
Bauen eines Betriebssystems für den Raspberrypi von JSandler18
Der Codierungsstil folgt hauptsächlich dem Linux -Kernel -Codierungsstil.
Schildabzeichen von Shields.io.
⇯ Zurück nach oben