mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
.. | ||
delays.c | ||
delays.h | ||
gpio.h | ||
kernel8.img | ||
link.ld | ||
main.c | ||
Makefile | ||
mbox.c | ||
mbox.h | ||
OLVASSEL.md | ||
README.md | ||
start.S | ||
uart.c | ||
uart.h |
Tutorial 07 - Delays
It is very important to wait precise amounts of time while you're interfacing with low level hardware. In this tutorial we'll cover there ways. One is CPU frequency dependent (and useful if wait time is given in CPU clock cycles), the other two are microsec (millionth of a second) based.
Delays.h, delays.c
wait_cycles(n)
this is a very straightforward thing, we execute the 'nop' instruction n times.
wait_msec(n)
this implementation uses ARM system registers (available on all AArch64 CPUs).
wait_msec_st(n)
is a BCM specific implementation, which uses the System Timer peripheral (not available on qemu).
Main
We use different wait implementations between printing strings on serial console.