Skip to content

Commit

Permalink
add Apache license explicitly in key files
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-s committed Jul 19, 2020
1 parent f2f4827 commit 5278a55
Show file tree
Hide file tree
Showing 12 changed files with 202 additions and 10 deletions.
17 changes: 16 additions & 1 deletion firmware/01360-fireplace/fireplace1.X/fireplace.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
/* fireplace.h */
/* fireplace.h
Copyright 2020 Jason M. Sachs
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 FIREPLACE_H
#define FIREPLACE_H

Expand Down
18 changes: 18 additions & 0 deletions firmware/01360-fireplace/fireplace1.X/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@
#include "mock_adc.h"
#include "mock_uart.h"

/*
Copyright 2020 Jason M. Sachs
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.
*/

POKY_STATE poky_state;
SHARED_MEMORY shmem;
volatile int16_t something = 0;
Expand Down
18 changes: 17 additions & 1 deletion firmware/01360-fireplace/fireplace1.X/poky.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* poky.c */
/* poky.c
Copyright 2020 Jason M. Sachs
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.
*/

#include "fireplace.h"
#include "poky.h"
Expand Down
17 changes: 16 additions & 1 deletion firmware/01360-fireplace/fireplace1.X/poky.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
/* poky.h */
/* poky.h
Copyright 2020 Jason M. Sachs
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 POKY_H
#define POKY_H

Expand Down
18 changes: 17 additions & 1 deletion firmware/01360-fireplace/fireplace1.X/speedy.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* speedy.c */
/* speedy.c
Copyright 2020 Jason M. Sachs
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.
*/

#include "fireplace.h"
#include "mock_adc.h"
Expand Down
18 changes: 17 additions & 1 deletion firmware/01360-fireplace/fireplace1.X/speedy.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* speedy.h */
/* speedy.h
Copyright 2020 Jason M. Sachs
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 SPEEDY_H
#define SPEEDY_H

Expand Down
17 changes: 16 additions & 1 deletion firmware/01360-fireplace/fireplace2.X/fireplace.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
/* fireplace.h */
/* fireplace.h
Copyright 2020 Jason M. Sachs
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 FIREPLACE_H
#define FIREPLACE_H

Expand Down
18 changes: 18 additions & 0 deletions firmware/01360-fireplace/fireplace2.X/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@
#include "mock_adc.h"
#include "mock_uart.h"

/*
Copyright 2020 Jason M. Sachs
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.
*/

SPEEDY_STATE speedy_state;
POKY_STATE poky_state;
SHARED_MEMORY shmem;
Expand Down
18 changes: 17 additions & 1 deletion firmware/01360-fireplace/fireplace2.X/poky.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* poky.c */
/* poky.c
Copyright 2020 Jason M. Sachs
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.
*/

#include "fireplace.h"
#include "poky.h"
Expand Down
17 changes: 16 additions & 1 deletion firmware/01360-fireplace/fireplace2.X/poky.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
/* poky.h */
/* poky.h
Copyright 2020 Jason M. Sachs
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 POKY_H
#define POKY_H

Expand Down
18 changes: 17 additions & 1 deletion firmware/01360-fireplace/fireplace2.X/speedy.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* speedy.c */
/* speedy.c
Copyright 2020 Jason M. Sachs
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.
*/

#include "fireplace.h"
#include "speedy.h"
Expand Down
18 changes: 17 additions & 1 deletion firmware/01360-fireplace/fireplace2.X/speedy.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* speedy.h */
/* speedy.h
Copyright 2020 Jason M. Sachs
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 SPEEDY_H
#define SPEEDY_H

Expand Down

0 comments on commit 5278a55

Please sign in to comment.