X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=blobdiff_plain;f=tos%2Flib%2Ftosthreads%2Fcsystem%2FVolumeMapC.nc;h=ee2126fdffbabec327b12b39be9e9043f3416e4f;hp=2821a08c31e847662496d09fec1f5d10f3304fd9;hb=e9bfab607e051bae6afb47b44892ce37541d1b44;hpb=adf1de6c009d13b7b52e68535c63b28f59c97400 diff --git a/tos/lib/tosthreads/csystem/VolumeMapC.nc b/tos/lib/tosthreads/csystem/VolumeMapC.nc index 2821a08c..ee2126fd 100644 --- a/tos/lib/tosthreads/csystem/VolumeMapC.nc +++ b/tos/lib/tosthreads/csystem/VolumeMapC.nc @@ -22,6 +22,7 @@ /** * @author Chieh-Jan Mike Liang + * @author J— çgila Bitsch Link */ configuration VolumeMapC { @@ -30,6 +31,8 @@ configuration VolumeMapC { interface BlockWrite[uint8_t volume_id]; interface LogRead[uint8_t volume_id]; interface LogWrite[uint8_t volume_id]; + interface ConfigStorage[uint8_t volume_id]; + interface Mount[uint8_t volume_id]; } } @@ -40,4 +43,7 @@ implementation { BlockWrite = VolumeMapP; LogRead = VolumeMapP; LogWrite = VolumeMapP; + + ConfigStorage = VolumeMapP; + Mount = VolumeMapP; }