From 23a4b895cee55079a9fd1821dc6c068e035e75cc Mon Sep 17 00:00:00 2001 From: Stephane D'Alu Date: Tue, 9 Feb 2016 18:31:31 +0100 Subject: updated license --- os/various/devices_lib/sensors/hdc1000.c | 14 +++++++++++++- os/various/devices_lib/sensors/hdc1000.h | 14 +++++++++++++- os/various/devices_lib/sensors/mcp9808.c | 15 +++++++++++++++ os/various/devices_lib/sensors/mcp9808.h | 12 ++++++++++++ os/various/devices_lib/sensors/sensor.h | 15 +++++++++++++++ os/various/devices_lib/sensors/tsl2561.c | 12 ++++++++++++ os/various/devices_lib/sensors/tsl2561.h | 12 ++++++++++++ 7 files changed, 92 insertions(+), 2 deletions(-) (limited to 'os/various/devices_lib/sensors') diff --git a/os/various/devices_lib/sensors/hdc1000.c b/os/various/devices_lib/sensors/hdc1000.c index 218450d..39e47ec 100644 --- a/os/various/devices_lib/sensors/hdc1000.c +++ b/os/various/devices_lib/sensors/hdc1000.c @@ -1,5 +1,17 @@ /* - HDC1008 for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + HDC100x for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. */ /** diff --git a/os/various/devices_lib/sensors/hdc1000.h b/os/various/devices_lib/sensors/hdc1000.h index 9533060..e4eae4c 100644 --- a/os/various/devices_lib/sensors/hdc1000.h +++ b/os/various/devices_lib/sensors/hdc1000.h @@ -1,5 +1,17 @@ /* - HDC1000 for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + HDC100x for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. */ /** diff --git a/os/various/devices_lib/sensors/mcp9808.c b/os/various/devices_lib/sensors/mcp9808.c index 296c2f1..4b22ea9 100644 --- a/os/various/devices_lib/sensors/mcp9808.c +++ b/os/various/devices_lib/sensors/mcp9808.c @@ -1,3 +1,18 @@ +/* + MCP9808 for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ #define I2C_HELPERS_AUTOMATIC_DRV TRUE diff --git a/os/various/devices_lib/sensors/mcp9808.h b/os/various/devices_lib/sensors/mcp9808.h index 3bae5d2..857f2f9 100644 --- a/os/various/devices_lib/sensors/mcp9808.h +++ b/os/various/devices_lib/sensors/mcp9808.h @@ -1,5 +1,17 @@ /* MCP9808 for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. */ #ifndef _SENSOR_MCP9808_H_ diff --git a/os/various/devices_lib/sensors/sensor.h b/os/various/devices_lib/sensors/sensor.h index 6ffa5a4..bd544b1 100644 --- a/os/various/devices_lib/sensors/sensor.h +++ b/os/various/devices_lib/sensors/sensor.h @@ -1,3 +1,18 @@ +/* + Copyright (C) 2016 Stephane D'Alu + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + /** * * Example of function calls. diff --git a/os/various/devices_lib/sensors/tsl2561.c b/os/various/devices_lib/sensors/tsl2561.c index f67823a..954c098 100644 --- a/os/various/devices_lib/sensors/tsl2561.c +++ b/os/various/devices_lib/sensors/tsl2561.c @@ -1,5 +1,17 @@ /* TSL2561 for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. */ #define I2C_HELPERS_AUTOMATIC_DRV TRUE diff --git a/os/various/devices_lib/sensors/tsl2561.h b/os/various/devices_lib/sensors/tsl2561.h index d91fb4a..94e1ede 100644 --- a/os/various/devices_lib/sensors/tsl2561.h +++ b/os/various/devices_lib/sensors/tsl2561.h @@ -1,5 +1,17 @@ /* TSL2561 for ChibiOS/RT - Copyright (C) 2016 Stephane D'Alu + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. */ /** -- cgit v1.2.3