diff options
author | siddhu8990 | 2016-09-22 10:35:52 +0530 |
---|---|---|
committer | siddhu8990 | 2016-09-22 10:35:52 +0530 |
commit | 9a30882032e80661fe6c69d7c50da0154e4e431f (patch) | |
tree | ee2dab98e220547f050f7b891d8cc0aaaf78dfd4 /src/c/hardware | |
parent | 2790257d385a9d7d9e0dab9205baf4b3df0dd8c8 (diff) | |
download | scilab2c-9a30882032e80661fe6c69d7c50da0154e4e431f.tar.gz scilab2c-9a30882032e80661fe6c69d7c50da0154e4e431f.tar.bz2 scilab2c-9a30882032e80661fe6c69d7c50da0154e4e431f.zip |
Image processing functions for blurring, thresholding and edge detection added
Diffstat (limited to 'src/c/hardware')
-rw-r--r-- | src/c/hardware/rasberrypi/includes/RPIPeripheralThreading.h | 2 | ||||
-rw-r--r-- | src/c/hardware/rasberrypi/threading/u16RPIThreadCreates.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/c/hardware/rasberrypi/includes/RPIPeripheralThreading.h b/src/c/hardware/rasberrypi/includes/RPIPeripheralThreading.h index 23045677..a7b2adb4 100644 --- a/src/c/hardware/rasberrypi/includes/RPIPeripheralThreading.h +++ b/src/c/hardware/rasberrypi/includes/RPIPeripheralThreading.h @@ -19,7 +19,7 @@ extern "C" { #endif -uint16 RPIThreadCreate(void *(*threadFunction)(void)); +uint16 RPIThreadCreate(void *(*threadFunction)(void*)); #ifdef __cplusplus } /* extern "C" */ diff --git a/src/c/hardware/rasberrypi/threading/u16RPIThreadCreates.c b/src/c/hardware/rasberrypi/threading/u16RPIThreadCreates.c index d0a063ac..c05c959c 100644 --- a/src/c/hardware/rasberrypi/threading/u16RPIThreadCreates.c +++ b/src/c/hardware/rasberrypi/threading/u16RPIThreadCreates.c @@ -15,7 +15,7 @@ #include "types.h" #include "RPIPeripheralThreading.h" -uint16 RPIThreadCreate(void *(*threadFunction)(void)) +uint16 RPIThreadCreate(void *(*threadFunction)(void*)) { int status; status = piThreadCreate (threadFunction); |