xistor 910619de4c fix missing semicolon 1 gadu atpakaļ
..
Makefile 426205e2a3 Added makefiles for LLVM Clang 5 gadi atpakaļ
Makefile.clang 9c5c2813a0 Update QEMU command in all README and Makefile 2 gadi atpakaļ
Makefile.gcc 9c5c2813a0 Update QEMU command in all README and Makefile 2 gadi atpakaļ
OLVASSEL.md 158e9ea522 Fixed typos 6 gadi atpakaļ
README.md 158e9ea522 Fixed typos 6 gadi atpakaļ
delays.c 910619de4c fix missing semicolon 1 gadu atpakaļ
delays.h 7ace64ba9f Initial commit 6 gadi atpakaļ
gpio.h 7ace64ba9f Initial commit 6 gadi atpakaļ
kernel8.img 8ce0f75b47 Recompiled with latest gcc 4 gadi atpakaļ
link.ld 7ace64ba9f Initial commit 6 gadi atpakaļ
main.c 7ace64ba9f Initial commit 6 gadi atpakaļ
mbox.c 214885df63 compute the mailbox cmd only once 6 gadi atpakaļ
mbox.h 7ace64ba9f Initial commit 6 gadi atpakaļ
start.S ea4691947c Improve comments wrt stack setup 3 gadi atpakaļ
uart.c c59ad439f4 Enable UART0 FIFOs 3 gadi atpakaļ
uart.h 7ace64ba9f Initial commit 6 gadi atpakaļ

README.md

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.