Jan 7 2014

oktolight.exe

here is the first version of okotlight.exe Beta v0.1.
feel free to use it in your _not_ commercial products.okto1

okto2

okto3

okto4

Download for Windows: oktolight Beta v0.1
For linux use boblight
For Enigma2 use Boblight-enigma2


Jan 4 2014

valgrind and gprof – performance messure tools

to create a graph of all call from your executable, use valgrind:

valgrind --tool=callgrind --dump-instr=yes --simulate-cache=yes --collect-jumps=yes program arguments

then open in kcachegrind (also available for Windows)

 

gprof: you need to compile with -pg. then a gmon.out file will be created.

open that file with:

gprof program gmon.out > gprof.txt
gprof program gmon.out | less