// HEL Library \\ |
ASSERT's
and is faster and smaller.libhel.a
and they are located in the lib
directory from the HEL
ZIP archive, which you probably just downloaded. You will see two subfolders in the lib
directory, one is called debug
and the other one is called release
.libhel.a
either from the debug
or release
directory into ham/gcc-arm/lib
from your HAM installation.HEL
headerfile (hel.h) in order to get access to the functions. To do this, copy hel.h
from HEL's src
directory into the folder ham/include
from your HAM installation.libhel.a
to a project, you must add one line to the project makefile. Open the makefile from the project where you want to use HEL and add below OFILES
this line:
ADD_LIBS += $(GCCARM)/lib/libhel.a
Now it's ready to compile!
Please keep in mind, you must have HAM installed and HAMlib linked as well, otherwise HEL doesn't work right and spites out errors.