X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Flib%2Ftosthreads%2Fcsystem%2FTosThreadApiC.nc;h=da04a860bb1ddf6c8e87fe10fb0009a9d15bd26e;hb=e9bfab607e051bae6afb47b44892ce37541d1b44;hp=d7c4d5123a20e8978be2b0b5deedb38e01fc48e7;hpb=9f961063e0462824a666490afaaed0c7292c2757;p=tinyos-2.x.git diff --git a/tos/lib/tosthreads/csystem/TosThreadApiC.nc b/tos/lib/tosthreads/csystem/TosThreadApiC.nc index d7c4d512..da04a860 100644 --- a/tos/lib/tosthreads/csystem/TosThreadApiC.nc +++ b/tos/lib/tosthreads/csystem/TosThreadApiC.nc @@ -31,6 +31,7 @@ /** * @author Kevin Klues + * @author Chieh-Jan Mike Liang */ #include "tosthread.h" @@ -67,8 +68,14 @@ implementation { #if defined(TOSTHREAD_LOGSTORAGE_H) || defined(TOSTHREAD_DYNAMIC_LOADER) components CLogStorageC; #endif + #if defined(TOSTHREAD_CONFIGSTORAGE_H) || defined(TOSTHREAD_DYNAMIC_LOADER) + components CConfigStorageC; + #endif + #if defined(TOSTHREAD_COLLECTION_H) || defined(TOSTHREAD_DYNAMIC_LOADER) + components CCollectionC; + #endif - //Telosb sensorboard specific. Later need to find conditional way of adding this in + //Telosb sensorboard specific. #if defined(TOSTHREAD_HAMAMATSUS1087_H) || defined(TOSTHREAD_DYNAMIC_LOADER) components CHamamatsuS1087ParC; #endif @@ -83,4 +90,12 @@ implementation { #if defined(TOSTHREAD_SINESENSOR_H) || defined(TOSTHREAD_DYNAMIC_LOADER) components CSineSensorC; #endif + + //Basicsb sensorboard specific + #if defined(TOSTHREAD_PHOTO_H) || defined(TOSTHREAD_DYNAMIC_LOADER) + components CPhotoC; + #endif + #if defined(TOSTHREAD_TEMP_H) || defined(TOSTHREAD_DYNAMIC_LOADER) + components CTempC; + #endif }