[Tinyos8051wg-commit] SF.net SVN: tinyos8051wg:[1108] trunk/diku/mcs51/tos
Status: Alpha
Brought to you by:
mleopold
From: <al...@us...> - 2010-02-22 11:55:35
|
Revision: 1108 http://tinyos8051wg.svn.sourceforge.net/tinyos8051wg/?rev=1108&view=rev Author: alfvii Date: 2010-02-22 11:54:51 +0000 (Mon, 22 Feb 2010) Log Message: ----------- Email and Copyright modified Modified Paths: -------------- trunk/diku/mcs51/tos/chips/aduc841/adc/ADCC.nc trunk/diku/mcs51/tos/chips/aduc841/adc/ADCControl.nc trunk/diku/mcs51/tos/chips/aduc841/adc/Haladuc841ADCP.nc trunk/diku/mcs51/tos/chips/aduc841/adc/adc.h trunk/diku/mcs51/tos/chips/aduc841/dac/DACC.nc trunk/diku/mcs51/tos/chips/aduc841/dac/DACControl.nc trunk/diku/mcs51/tos/chips/aduc841/dac/Haladuc841DACP.nc trunk/diku/mcs51/tos/chips/aduc841/dac/dac.h trunk/diku/mcs51/tos/chips/aduc841/i2c/Haladuc841SimpleI2CP.nc trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CControl.nc trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CMaster.nc trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CSlave.nc trunk/diku/mcs51/tos/chips/aduc841/i2c/i2c.h trunk/diku/mcs51/tos/chips/aduc841/pins/Haladuc841LedPinP.nc trunk/diku/mcs51/tos/chips/aduc841/pwm/Haladuc841SimplePWMP.nc trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMC.nc trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMControl.nc trunk/diku/mcs51/tos/chips/aduc841/pwm/pwm.h trunk/diku/mcs51/tos/chips/aduc841/spi/Haladuc841SimpleSPIP.nc trunk/diku/mcs51/tos/chips/aduc841/spi/SpiByte.nc trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841Counter.nc trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841TimerP.nc trunk/diku/mcs51/tos/chips/aduc841/timer/aduc841-timer.h trunk/diku/mcs51/tos/chips/aduc841/uart/Haladuc841SimpleUart0P.nc trunk/diku/mcs51/tos/chips/aduc841/uart/serial.h trunk/diku/mcs51/tos/platforms/cookie841/ActiveMessageC.nc trunk/diku/mcs51/tos/platforms/cookie841/DS18S20C.nc trunk/diku/mcs51/tos/platforms/cookie841/HalTelegesisRadioP.nc trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841DS18S20P.nc trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841OneWireP.nc trunk/diku/mcs51/tos/platforms/cookie841/OneWireC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformADCC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformDACC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformDS18S20C.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformI2CC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformLedsC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformOneWireC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformPWMC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformRadioC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformTimerC.nc trunk/diku/mcs51/tos/platforms/cookie841/PlatformUARTC.nc trunk/diku/mcs51/tos/platforms/cookie841/RadioC.nc trunk/diku/mcs51/tos/platforms/cookie841/RadioControl.nc trunk/diku/mcs51/tos/platforms/cookie841/onewire.h trunk/diku/mcs51/tos/platforms/cookie841/radio.h Modified: trunk/diku/mcs51/tos/chips/aduc841/adc/ADCC.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/adc/ADCC.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/adc/ADCC.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <adc.h> interface ADCC { Modified: trunk/diku/mcs51/tos/chips/aduc841/adc/ADCControl.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/adc/ADCControl.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/adc/ADCControl.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <adc.h> interface ADCControl { Modified: trunk/diku/mcs51/tos/chips/aduc841/adc/Haladuc841ADCP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/adc/Haladuc841ADCP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/adc/Haladuc841ADCP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,42 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ #include <ioaduc841.h> #include <adc.h> Modified: trunk/diku/mcs51/tos/chips/aduc841/adc/adc.h =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/adc/adc.h 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/adc/adc.h 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,42 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ #ifndef _H_ADC_H Modified: trunk/diku/mcs51/tos/chips/aduc841/dac/DACC.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/dac/DACC.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/dac/DACC.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <dac.h> interface DACC { Modified: trunk/diku/mcs51/tos/chips/aduc841/dac/DACControl.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/dac/DACControl.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/dac/DACControl.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <dac.h> interface DACControl { Modified: trunk/diku/mcs51/tos/chips/aduc841/dac/Haladuc841DACP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/dac/Haladuc841DACP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/dac/Haladuc841DACP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,42 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ #include <ioaduc841.h> #include <dac.h> Modified: trunk/diku/mcs51/tos/chips/aduc841/dac/dac.h =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/dac/dac.h 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/dac/dac.h 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,42 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ #ifndef _H_DAC_H Modified: trunk/diku/mcs51/tos/chips/aduc841/i2c/Haladuc841SimpleI2CP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/i2c/Haladuc841SimpleI2CP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/i2c/Haladuc841SimpleI2CP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <ioaduc841.h> #include <i2c.h> Modified: trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CControl.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CControl.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CControl.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,44 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + + #include <i2c.h> interface I2CControl { Modified: trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CMaster.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CMaster.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CMaster.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,44 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + + #include <i2c.h> interface I2CMaster { Modified: trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CSlave.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CSlave.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/i2c/I2CSlave.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,44 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + */ + #include <i2c.h> interface I2CSlave { Modified: trunk/diku/mcs51/tos/chips/aduc841/i2c/i2c.h =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/i2c/i2c.h 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/i2c/i2c.h 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #ifndef _H_I2C_H Modified: trunk/diku/mcs51/tos/chips/aduc841/pins/Haladuc841LedPinP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/pins/Haladuc841LedPinP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/pins/Haladuc841LedPinP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -36,7 +36,7 @@ */ /** - * @modified Alfonso Mart\xEDnez <Alf...@ho...> + * @modified Alfonso Mart\xEDnez <alf...@al...> * for ADUC841 */ Modified: trunk/diku/mcs51/tos/chips/aduc841/pwm/Haladuc841SimplePWMP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/pwm/Haladuc841SimplePWMP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/pwm/Haladuc841SimplePWMP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,42 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ #include <ioaduc841.h> #include <pwm.h> Modified: trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMC.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMC.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMC.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,44 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + + #include <adc.h> interface ADCC { Modified: trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMControl.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMControl.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/pwm/PWMControl.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,44 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + + #include <pwm.h> interface PWMControl { Modified: trunk/diku/mcs51/tos/chips/aduc841/pwm/pwm.h =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/pwm/pwm.h 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/pwm/pwm.h 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,42 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ #ifndef _H_PWM_H Modified: trunk/diku/mcs51/tos/chips/aduc841/spi/Haladuc841SimpleSPIP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/spi/Haladuc841SimpleSPIP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/spi/Haladuc841SimpleSPIP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -51,7 +51,7 @@ */ /** - * @modified Alfonso Mart\xEDnez <Alf...@ho...> + * @modified Alfonso Mart\xEDnez <alf...@al...> * for ADUC841 */ Modified: trunk/diku/mcs51/tos/chips/aduc841/spi/SpiByte.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/spi/SpiByte.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/spi/SpiByte.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -26,7 +26,7 @@ */ /** - * @modified Alfonso Mart\xEDnez <Alf...@ho...> + * @modified Alfonso Mart\xEDnez <alf...@al...> * for ADUC841 */ Modified: trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841Counter.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841Counter.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841Counter.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -36,7 +36,7 @@ /** - * @modified Alfonso Mart\xEDnez <Alf...@ho...> + * @modified Alfonso Mart\xEDnez <alf...@al...> * for ADUC841 */ Modified: trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841TimerP.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841TimerP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/timer/HplAduc841TimerP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -47,7 +47,7 @@ */ /** - * @modified Alfonso Mart\xEDnez <Alf...@ho...> + * @modified Alfonso Mart\xEDnez <alf...@al...> * for ADUC841 */ Modified: trunk/diku/mcs51/tos/chips/aduc841/timer/aduc841-timer.h =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/timer/aduc841-timer.h 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/timer/aduc841-timer.h 2010-02-22 11:54:51 UTC (rev 1108) @@ -35,7 +35,7 @@ */ /** - * @modified Alfonso Mart\xEDnez <Alf...@ho...> + * @modified Alfonso Mart\xEDnez <alf...@al...> * for ADUC841 */ #ifndef _H_aduc841_timer_H Modified: trunk/diku/mcs51/tos/chips/aduc841/uart/Haladuc841SimpleUart0P.nc =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/uart/Haladuc841SimpleUart0P.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/uart/Haladuc841SimpleUart0P.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,10 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> - * for Aduc841 + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include "serial.h" #include "aduc841-timer.h" Modified: trunk/diku/mcs51/tos/chips/aduc841/uart/serial.h =================================================================== --- trunk/diku/mcs51/tos/chips/aduc841/uart/serial.h 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/chips/aduc841/uart/serial.h 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #ifndef _H_SERIAL_H #define _H_SERIAL_H Modified: trunk/diku/mcs51/tos/platforms/cookie841/ActiveMessageC.nc =================================================================== --- trunk/diku/mcs51/tos/platforms/cookie841/ActiveMessageC.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/platforms/cookie841/ActiveMessageC.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,9 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include "AM.h" Modified: trunk/diku/mcs51/tos/platforms/cookie841/DS18S20C.nc =================================================================== --- trunk/diku/mcs51/tos/platforms/cookie841/DS18S20C.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/platforms/cookie841/DS18S20C.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,10 +1,45 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + + interface DS18S20C { Modified: trunk/diku/mcs51/tos/platforms/cookie841/HalTelegesisRadioP.nc =================================================================== --- trunk/diku/mcs51/tos/platforms/cookie841/HalTelegesisRadioP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/platforms/cookie841/HalTelegesisRadioP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -2,8 +2,43 @@ /** *Hal for Telegesis ETRX2 * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <ioaduc841.h> #include <radio.h> Modified: trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841DS18S20P.nc =================================================================== --- trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841DS18S20P.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841DS18S20P.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. */ + +/** + * + * @author Alfonso Mart\xEDnez <alf...@al...> + */ + #include <ioaduc841.h> Modified: trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841OneWireP.nc =================================================================== --- trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841OneWireP.nc 2010-01-30 21:53:33 UTC (rev 1107) +++ trunk/diku/mcs51/tos/platforms/cookie841/Haladuc841OneWireP.nc 2010-02-22 11:54:51 UTC (rev 1108) @@ -1,8 +1,43 @@ /** * - * @author Alfonso Mart\xEDnez <Alf...@ho...> + * /* + * Copyright (c) 2010 Centro de Electr\xF3nica Industrial (CEI) Universidad + * Polit\xE9cnica de Madrid (Technical University of Madrid) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * - Neither the name of CEI nor Universidad Polit\xE9cnica de Madrid nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CEI, UNIVERSIDAD + * POLIT\xC9CNICA DE MADRID OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR... [truncated message content] |