Update submodules, change licene of source code in main folder to public domain / cc0 and update readme with the changes made by a2800276

This commit is contained in:
Renze Nicolai 2022-07-11 22:33:51 +02:00
parent 1c56383215
commit 91c816885a
9 changed files with 27 additions and 18 deletions

View file

@ -1,9 +0,0 @@
Copyright 2022 Julian Scheffers
Copyright 2022 Jeroen Domburg
Copyright 2022 Renze Nicolai
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View file

@ -1,12 +1,15 @@
# MCH2022 template app
This repository contains a template app for the MCH2022 badge.
It is intended to be used as the basis for developing your own native ESP32
apps. See [Getting Started](https://badge.team/docs/badges/mch2022/software-development/esp_idf_getting_started/)
## License
The source code contained in this repository is licensed under terms of the MIT license, more information can be found in the LICENSE file.
The source code contained in the main folder of this example is public domain / CC0 licensed, use it as you please.
Source code included as submodules is licensed separately, please check the following table for details.
Source code included as submodules is licensed separately, please check the
following table for details.
| Submodule | License | Author |
|-----------------------------|-----------------------------------|--------------------------------------------------------|
@ -20,7 +23,7 @@ Source code included as submodules is licensed separately, please check the foll
| components/sdcard | MIT | Nicolai Electronics |
| components/spi-ice40 | MIT | Nicolai Electronics |
| components/spi-ili9341 | MIT | Nicolai Electronics |
| components/ws2812 | MIT | Unlicense / Public domain |
| components/ws2812 | Unlicense / Public domain | None |
## How to make
```sh

@ -1 +1 @@
Subproject commit 1a46f7d750cf6b8e68873a0e85776a8508f297fb
Subproject commit f9344090484ccf5861688555e900c49b144db59e

@ -1 +1 @@
Subproject commit b04727dffbc79c90ac705ab620e60f8daf2c13a0
Subproject commit 073a70b0175f3b08164dff5a6adb178e6d3caacc

@ -1 +1 @@
Subproject commit ef61caff38ac1c238ad1fb907174255a19fa4809
Subproject commit 8027acbe5e49b009e71baf66aff2aaf5ee64d7bd

View file

@ -1,6 +1,11 @@
# This example code is in the Public Domain (or CC0 licensed, at your option.)
# Unless required by applicable law or agreed to in writing, this
# software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied.
idf_component_register(
SRCS
"main.c"
INCLUDE_DIRS
"." "include"
)
)

View file

@ -1,3 +1,9 @@
/*
* This example code is in the Public Domain (or CC0 licensed, at your option.)
* Unless required by applicable law or agreed to in writing, this
* software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once

View file

@ -1,5 +1,9 @@
// This file contains a simple hello world app which you can base you own apps on.
/*
* This example code is in the Public Domain (or CC0 licensed, at your option.)
* Unless required by applicable law or agreed to in writing, this
* software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied.
*/
#include "main.h"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB