- git
- make
- arm-linux-gnueabi-gcc
To install required packages on debian/ubuntu (apt) based systems, use:
sudo apt-get install git make libc6-armel-cross libc6-dev-armel-cross binutils-arm-linux-gnueabi libncurses5-dev build-essential bison flex libssl-dev bc gcc-arm-linux-gnueabi g++-arm-linux-gnueabi
Clone,
git clone https://github.com/TatranskiDravci/FLL-td.git
cd FLL-td
initialize build directory,
make init
and build all targets,
make
To create build instructions for runX.c
, use the template
runX: runX.c $(DRIVERS) $(INCLUDE)
$(CC) $^ -o build/runX
and (optionally) add runX
to the default all
build target
# build all targets
all: run1 run 2 ... runX
To clean build/
directory, use make clean
.
To create a new report, use this new issue form.
The documentation for the code, provided in subdirectories of src/
can be found here. One may also refer to the header files (.h
files) in the subdirectories of src/
. These contain relatively detailed descriptions of the usage and parameters of the provided functions as well as some useful constants. (Note, the documentation in src/drivers/*.h
is kept relatively simple. This is because a detailed description of every function would be beyond useless in this specific case.)
A relatively comprehensive styleguide with examples can be found here or on the wiki.