Skip to content

TatranskiDravci/FLL-td

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FLL-td

Linux and WSL

Requirements

  • 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

Quickstart

Clone,

git clone https://github.com/TatranskiDravci/FLL-td.git
cd FLL-td

initialize build directory,

make init

and build all targets,

make

Makefile

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.

Reports

To create a new report, use this new issue form.

Documentation

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.)

Styleguide

A relatively comprehensive styleguide with examples can be found here or on the wiki.