X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=int%2Fnucleo-f767-blinky%2Fsrc%2Fsds.c;h=1300c0625f361db069e1897e295db66d9f8c2828;hb=0efbd98973520d55ec4e80e443911f43b3c28a0d;hp=8e3d2f6687a2171cdaed4baf069079b702de19c4;hpb=ddfd196fa4999b117701121a2f4cb1fe378f902d;p=mTask.git diff --git a/int/nucleo-f767-blinky/src/sds.c b/int/nucleo-f767-blinky/src/sds.c index 8e3d2f6..1300c06 100644 --- a/int/nucleo-f767-blinky/src/sds.c +++ b/int/nucleo-f767-blinky/src/sds.c @@ -8,7 +8,6 @@ #include "interface.h" #include "interpret.h" -#include "misc.h" #include "sds.h" struct sds sdss[MAXSDSS]; @@ -27,7 +26,7 @@ void sds_register() break; if(cs == MAXSDSS) - die("Trying to add too much tasks...\n"); + die("Trying to add too much sdss...\n"); memset(&sdss[cs], 0, sizeof(struct sds)); //Read identifier @@ -53,6 +52,8 @@ bool sds_update() sdss[cs].value = read16(); debug("\nReceived sds update %d: %d\n", sdss[cs].id, sdss[cs].value); + printf("\nReceived sds update %d: %d\n", + sdss[cs].id, sdss[cs].value); return true; } }