Projet netbeans converti vers cobalt. Raspicam non necessaire desormais

This commit is contained in:
vezde 2022-10-18 16:31:54 +02:00
parent 5cf34b3e9d
commit b687bc01ef
11 changed files with 517 additions and 28 deletions

View file

@ -20,6 +20,7 @@
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/videoio/legacy/constants_c.h>
#ifndef __FOR_PC__
#include "raspicam/raspicam_cv.h"

View file

@ -16,6 +16,7 @@
*/
#include "img.h"
#include <opencv2/imgproc/types_c.h>
/**
* Tell if arena is empty (not found) or not

View file

@ -42,7 +42,8 @@ OBJECTFILES= \
${OBJECTDIR}/lib/img.o \
${OBJECTDIR}/lib/messages.o \
${OBJECTDIR}/main.o \
${OBJECTDIR}/tasks.o
${OBJECTDIR}/tasks.o \
${OBJECTDIR}/wrapper.o
# C Compiler Flags
@ -109,6 +110,11 @@ ${OBJECTDIR}/tasks.o: tasks.cpp
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/tasks.o tasks.cpp
${OBJECTDIR}/wrapper.o: wrapper.c
${MKDIR} -p ${OBJECTDIR}
${RM} "$@.d"
$(COMPILE.c) -g -I./ -I./lib `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/wrapper.o wrapper.c
# Subprojects
.build-subprojects:

View file

@ -42,15 +42,16 @@ OBJECTFILES= \
${OBJECTDIR}/lib/img.o \
${OBJECTDIR}/lib/messages.o \
${OBJECTDIR}/main.o \
${OBJECTDIR}/tasks.o
${OBJECTDIR}/tasks.o \
${OBJECTDIR}/wrapper.o
# C Compiler Flags
CFLAGS=-I/usr/xenomai/include/mercury -I/usr/xenomai/include -D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__MERCURY__ -I/usr/xenomai/include/alchemy
# CC Compiler Flags
CCFLAGS=-I/usr/xenomai/include/mercury -I/usr/xenomai/include -D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__MERCURY__ -I/usr/xenomai/include/alchemy -Wno-pmf-conversions -std=gnu++11
CXXFLAGS=-I/usr/xenomai/include/mercury -I/usr/xenomai/include -D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__MERCURY__ -I/usr/xenomai/include/alchemy -Wno-pmf-conversions -std=gnu++11
CCFLAGS=-D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__COBALT__ -I/usr/xenomai/include/alchemy -Wno-pmf-conversions -std=gnu++11
CXXFLAGS=-D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__COBALT__ -I/usr/xenomai/include/alchemy -Wno-pmf-conversions -std=gnu++11
# Fortran Compiler Flags
FFLAGS=
@ -59,7 +60,7 @@ FFLAGS=
ASFLAGS=
# Link Libraries and Options
LDLIBSOPTIONS=`pkg-config --libs opencv` -lraspicam_cv -lraspicam
LDLIBSOPTIONS=`pkg-config --libs opencv4`
# Build Targets
.build-conf: ${BUILD_SUBPROJECTS}
@ -67,47 +68,52 @@ LDLIBSOPTIONS=`pkg-config --libs opencv` -lraspicam_cv -lraspicam
${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/superviseur-robot: ${OBJECTFILES}
${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
${LINK.cc} -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/superviseur-robot ${OBJECTFILES} ${LDLIBSOPTIONS} -Wl,--no-as-needed -lalchemy -lcopperplate /usr/xenomai/lib/xenomai/bootstrap.o -Wl,--wrap=main -Wl,--dynamic-list=/usr/xenomai/lib/dynlist.ld -L/usr/xenomai/lib -lmercury -lpthread -lrt
${LINK.cc} -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/superviseur-robot ${OBJECTFILES} ${LDLIBSOPTIONS} -Wl,--no-as-needed -lalchemy -lcopperplate -lcobalt /usr/xenomai/lib/xenomai/bootstrap.o -Wl,--wrap=main -Wl,--dynamic-list=/usr/xenomai/lib/dynlist.ld -L/usr/xenomai/lib -lpthread -lrt
${OBJECTDIR}/lib/base64/base64.o: lib/base64/base64.cpp
${MKDIR} -p ${OBJECTDIR}/lib/base64
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/base64/base64.o lib/base64/base64.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/base64/base64.o lib/base64/base64.cpp
${OBJECTDIR}/lib/camera.o: lib/camera.cpp
${MKDIR} -p ${OBJECTDIR}/lib
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/camera.o lib/camera.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/camera.o lib/camera.cpp
${OBJECTDIR}/lib/commonitor.o: lib/commonitor.cpp
${MKDIR} -p ${OBJECTDIR}/lib
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/commonitor.o lib/commonitor.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/commonitor.o lib/commonitor.cpp
${OBJECTDIR}/lib/comrobot.o: lib/comrobot.cpp
${MKDIR} -p ${OBJECTDIR}/lib
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/comrobot.o lib/comrobot.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/comrobot.o lib/comrobot.cpp
${OBJECTDIR}/lib/img.o: lib/img.cpp
${MKDIR} -p ${OBJECTDIR}/lib
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/img.o lib/img.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/img.o lib/img.cpp
${OBJECTDIR}/lib/messages.o: lib/messages.cpp
${MKDIR} -p ${OBJECTDIR}/lib
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/messages.o lib/messages.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/lib/messages.o lib/messages.cpp
${OBJECTDIR}/main.o: main.cpp
${MKDIR} -p ${OBJECTDIR}
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/main.o main.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/main.o main.cpp
${OBJECTDIR}/tasks.o: tasks.cpp
${MKDIR} -p ${OBJECTDIR}
${RM} "$@.d"
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/tasks.o tasks.cpp
$(COMPILE.cc) -g -D_WITH_TRACE_ -D__FOR_PC__ -D__WITH_ARUCO__ -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/cobalt `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/tasks.o tasks.cpp
${OBJECTDIR}/wrapper.o: wrapper.c
${MKDIR} -p ${OBJECTDIR}
${RM} "$@.d"
$(COMPILE.c) -g -I./ -I./lib -I/usr/xenomai/include -I/usr/xenomai/include/mercury `pkg-config --cflags opencv4` -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/wrapper.o wrapper.c
# Subprojects
.build-subprojects:

View file

@ -28,6 +28,7 @@
<itemPath>./main.cpp</itemPath>
<itemPath>./lib/messages.cpp</itemPath>
<itemPath>./tasks.cpp</itemPath>
<itemPath>wrapper.c</itemPath>
</logicalFolder>
<logicalFolder name="TestFiles"
displayName="Test Files"
@ -113,6 +114,8 @@
</item>
<item path="./tasks.h" ex="false" tool="3" flavor2="0">
</item>
<item path="wrapper.c" ex="false" tool="0" flavor2="0">
</item>
</conf>
<conf name="Debug__RPI_" type="1">
<toolsSet>
@ -135,21 +138,20 @@
<pElem>./</pElem>
<pElem>./lib</pElem>
<pElem>/usr/xenomai/include</pElem>
<pElem>/usr/xenomai/include/mercury</pElem>
<pElem>/usr/xenomai/include/cobalt</pElem>
</incDir>
<commandLine>-I/usr/xenomai/include/mercury -I/usr/xenomai/include -D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__MERCURY__ -I/usr/xenomai/include/alchemy -Wno-pmf-conversions -std=gnu++11</commandLine>
<commandLine>-D_GNU_SOURCE -D_REENTRANT -fasynchronous-unwind-tables -D__COBALT__ -I/usr/xenomai/include/alchemy -Wno-pmf-conversions -std=gnu++11</commandLine>
<preprocessorList>
<Elem>_WITH_TRACE_</Elem>
<Elem>__FOR_PC__</Elem>
<Elem>__WITH_ARUCO__</Elem>
</preprocessorList>
</ccTool>
<linkerTool>
<linkerLibItems>
<linkerOptionItem>`pkg-config --libs opencv`</linkerOptionItem>
<linkerLibLibItem>raspicam_cv</linkerLibLibItem>
<linkerLibLibItem>raspicam</linkerLibLibItem>
<linkerOptionItem>`pkg-config --libs opencv4`</linkerOptionItem>
</linkerLibItems>
<commandLine>-Wl,--no-as-needed -lalchemy -lcopperplate /usr/xenomai/lib/xenomai/bootstrap.o -Wl,--wrap=main -Wl,--dynamic-list=/usr/xenomai/lib/dynlist.ld -L/usr/xenomai/lib -lmercury -lpthread -lrt</commandLine>
<commandLine>-Wl,--no-as-needed -lalchemy -lcopperplate -lcobalt /usr/xenomai/lib/xenomai/bootstrap.o -Wl,--wrap=main -Wl,--dynamic-list=/usr/xenomai/lib/dynlist.ld -L/usr/xenomai/lib -lpthread -lrt</commandLine>
</linkerTool>
</compileType>
<item path="./gdbsudo.sh" ex="false" tool="3" flavor2="0">
@ -184,6 +186,8 @@
</item>
<item path="./tasks.h" ex="false" tool="3" flavor2="0">
</item>
<item path="wrapper.c" ex="false" tool="0" flavor2="0">
</item>
</conf>
</confs>
</configurationDescriptor>

View file

@ -41,7 +41,7 @@
</conf>
<conf name="Debug__RPI_" type="1">
<toolsSet>
<developmentServer>pi@10.105.1.08:22</developmentServer>
<developmentServer>xenomai@10.105.1.7:22</developmentServer>
<platform>2</platform>
</toolsSet>
<dbx_gdbdebugger version="1">

View file

@ -7,12 +7,10 @@
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group>
<file>file:/home_pers/pehladik/dumber/software/raspberry/superviseur-robot/lib/camera.h</file>
<file>file:/home_pers/pehladik/dumber/software/raspberry/superviseur-robot/lib/messages.cpp</file>
<file>file:/home_pers/pehladik/dumber/software/raspberry/superviseur-robot/tasks.h</file>
<file>file:/home_pers/pehladik/dumber/software/raspberry/superviseur-robot/lib/camera.cpp</file>
<file>file:/home_pers/pehladik/dumber/software/raspberry/superviseur-robot/tasks.cpp</file>
<file>file:/home_pers/pehladik/dumber/software/raspberry/superviseur-robot/lib/messages.h</file>
<file>file:/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/camera.cpp</file>
<file>file:/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/img.cpp</file>
<file>file:/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/img.h</file>
<file>file:/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/camera.h</file>
</group>
</open-files>
</project-private>

View file

@ -0,0 +1,442 @@
#Tue Oct 18 16:27:07 CEST 2022
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/search.css=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_string__coll__graph.pdf=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/robot-icon.resized.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_com_monitor-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/Makefile=c1554978722000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/messages.cpp=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/defines_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position__coll__graph.map=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/test.cpp=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_9.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/compile-and-run-test=c1643985531039
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int__inherit__graph.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_2.png=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_img.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_int.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_battery__coll__graph.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h__dep__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_img__coll__graph.md5=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_10.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_position__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_b.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_7.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/img_8h__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/files.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img__inherit__graph.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_9.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h__dep__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/base64_8h.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/private/Makefile-variables.mk=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_battery__inherit__graph.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h__dep__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_0.map=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_c.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/commonitor_8h_source.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_int__coll__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_b.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/README.md=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/classes.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_0.md5=c1547564860000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/Makefile-Debug__RPI_.mk=c1666103200662
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/messages_8h__dep__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_f.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_a.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/navtreeindex0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_1.png=c1547564768000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_8.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_camera.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/refman.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/base64_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_6.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/comrobot_8h.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/struct_position-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_14.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_3.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_e.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_com_monitor.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/splitbar.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_10.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/jquery.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_3.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_string__coll__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/typedefs_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/graph_legend.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/base64_8h__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_c.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/messages_8h__dep__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/tasks.h=c1666083174936
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_5.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/tabs.css=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_5.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/folderopen.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_arena.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_battery__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enums_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_8.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/typedefs_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_9.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/search_m.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/typedefs_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_9.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_d.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/dir_97aefd0d527b934f1d99a682da8fe6a9.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_arena-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/globals_eval.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/menu.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_7.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_e.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/navtree.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/tab_h.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_6.md5=c1547564860000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_4.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_img-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/.gitignore=c1554978722000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/camera.cpp=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_0.png=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/doxygen.sty=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_6.map=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_3.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_a.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/README.md=c1554974530000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/messages_8h__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/comrobot.cpp=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_9.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_com_monitor.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_f.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enums_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_11.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_8.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/dynsections.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/LICENSE=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position__coll__graph.png=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_b.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_d.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_com_monitor.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/comrobot_8h__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_string__inherit__graph.pdf=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_string.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_e.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/camera_8h__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_battery.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_5.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/messages.h=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h__dep__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_a.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/commonitor_8h.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/globals_type.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/messages_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/dir_96aba1edb3024c67427e5e41410f3c29.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/comrobot_8h__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_position__inherit__graph.pdf=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_position__coll__graph.pdf=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_a.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_5.map=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message__inherit__graph.map=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_f.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_6.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/search.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_battery__coll__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_13.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_8.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_b.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/comrobot_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/graph_legend.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_5.md5=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_c.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/base64_8h__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_5.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/base64.cpp=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/closed.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position__coll__graph.md5=c1547564860000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_6.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/img_8h.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/annotated.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/camera.h=c1666102495240
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img__coll__graph.png=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h__dep__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h_source.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/functions_vars.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/globals_defs.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/camera_8h.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/commonitor_8h.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_6.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message__inherit__graph.pdf=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_int__coll__graph.pdf=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_a.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/camera_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/defines_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/nav_f.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/dir_97aefd0d527b934f1d99a682da8fe6a9.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_arena.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/sync_on.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/commonitor_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_camera-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_position__coll__graph.md5=c1547564860000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/commonitor.cpp=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_7.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_4.map=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/camera_8h__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/base64_8h__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_string__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/commonitor_8h__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enums_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_camera.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/img.h=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/bdwn.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_img__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_int__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/.gitignore=c1554974530000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/folderclosed.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_img.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/Package-Debug__PC_.bash=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_7.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_com_robot.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/.gitignore=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_4.md5=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enums_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/search_r.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_3.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_14.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_b.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/base64_8h.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/tab_b.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message__inherit__graph.md5=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position__inherit__graph.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/commonitor.h=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_4.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/comrobot_8h__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/close.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_3.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_13.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/main.cpp=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/defines_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery__inherit__graph.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/globals_enum.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/globals_func.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_4.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/nav_g.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_6.png=c1547564862000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/globals.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/menudata.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/commonitor_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message__inherit__graph.md5=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_4.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/hierarchy.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position__inherit__graph.png=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_7.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_4.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery__coll__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/commonitor_8h__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_img.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_4.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_c.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_3.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/files.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/Makefile-impl.mk=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img__coll__graph.map=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/search_l.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/base64_8h.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery__coll__graph.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message__inherit__graph.png=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_4.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/functions_func.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_3.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_3.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/robot-icon.resized.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/dir_97aefd0d527b934f1d99a682da8fe6a9.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img__coll__graph.md5=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherits.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/comrobot.h=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/project.xml=c1666103200750
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_2.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/mag_sel.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/comrobot_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/navtreedata.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/commonitor_8h__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_5.png=c1547564948000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/Package-Debug__RPI_.bash=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/open.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_c.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string__coll__graph.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_3.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/nav_h.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_8.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_3.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/annotated_dup.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_img.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/img_8h__dep__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/camera_8h.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/base64_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_4.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enums_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/wrapper.c=c1666103221330
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_3.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/hierarchy.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/annotated.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_d.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_8.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/doc.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/comrobot_8h.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string__inherit__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/camera_8h.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery__inherit__graph.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_e.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h_source.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/tasks.cpp=c1666083174936
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/bc_s.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_11.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/img.cpp=c1666102495240
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/defines_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int__coll__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/commonitor_8h.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/tab_s.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/struct_position.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_com_robot.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string__inherit__graph.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_3.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string__coll__graph.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/tab_a.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/camera_8h__incl.map=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/files.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/img_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_2.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/Makefile-variables.mk=c1666083174932
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_6.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_camera.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/resize.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/Makefile-Debug__PC_.mk=c1666103200646
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/base64_8h_source.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_position.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_img__coll__graph.pdf=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/index.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/typedefs_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_4.png=c1547563912000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/camera_8h__incl.md5=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/img_8h__dep__incl.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_com_robot-members.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/dir_96aba1edb3024c67427e5e41410f3c29.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/messages_8h.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_4.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enums_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_2.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/functions.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img__inherit__graph.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/img_8h__dep__incl.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_3.html=c1547565562000
VERSION=1.3
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int__coll__graph.map=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/Makefile=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/doxygen.css=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_img.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_5.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_img__inherit__graph.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_4.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_2.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_3.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_a.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_b.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/nomatches.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/classes_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_com_robot.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/lib/base64/base64.h=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int__coll__graph.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/struct_position.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/nbproject/project.properties=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_6.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_3.png=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/hierarchy.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/.dep.inc=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_arena.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_int__inherit__graph.pdf=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_d.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_f.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/class_message_position.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/comrobot_8h_source.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_7.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_12.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_5.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/wrapper.cpp=c1666102739657
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/enumvalues_1.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/gdbsudo.sh=c1643985476263
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/camera_8h_source.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string__inherit__graph.png=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_9.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_1.map=c1547564768000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_c.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/doxygen.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/sync_off.png=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/superviseur.doxygen=c1549890874000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/messages_8h.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_0.html=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/functions_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/latex/struct_position.tex=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/searchdata.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/graph_legend.png=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_string__coll__graph.png=c1547560340000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/variables_0.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/files_1.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_battery__coll__graph.png=c1547560338000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/search/all_12.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/navtree.css=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/dir_96aba1edb3024c67427e5e41410f3c29.js=c1547565562000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/inherit_graph_1.md5=c1547564768000
/home/dimercur/Travail/git/dumber/software/raspberry/superviseur-robot/doc/html/class_message_int__inherit__graph.png=c1547560338000

View file

@ -4,7 +4,7 @@
<configuration>
<data xmlns="http://www.netbeans.org/ns/make-project/1">
<name>superviseur</name>
<c-extensions/>
<c-extensions>c</c-extensions>
<cpp-extensions>cpp</cpp-extensions>
<header-extensions>h</header-extensions>
<sourceEncoding>UTF-8</sourceEncoding>

View file

@ -0,0 +1,31 @@
/*
* Copyright (C) 2022 dimercur
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
void *__real_malloc(size_t size)
{
void *lptr = malloc(size);
//printf("Malloc: %lu bytes @%p\n", size, lptr);
return lptr;
}
/* This function wraps the real free */
void __real_free(void* ptr)
{
free(ptr);
}