Page 1 of 1

What is the LICENSE for esp-at

Posted: Thu Aug 09, 2018 1:35 pm
by jonathanberi
https://github.com/espressif/esp32-at/issues/119

Hello,

Looking at the esp-at repository, there isn't a LICENSE file. The esp-idf itself is under Apache 2, while the esp_at.h is under MIT. Does anyone know what the project license actually is and can they help get a license file created+added?

Cheers!

Re: What is the LICENSE for esp-at

Posted: Fri Aug 10, 2018 9:09 am
by chegewara
You can easy assume its the same as for esp-idf or check this:
https://github.com/espressif/esp-adf/bl ... e.c#L1-L23
Every file has the same licence included.

Re: What is the LICENSE for esp-at

Posted: Sat Aug 11, 2018 5:25 pm
by jonathanberi
Thanks chegewara. Unfortunately, we can't make an assumption about licenses. We want to honor whatever is put forth by Espressif and stay within legal compliance.

Since the AT software is released as a binary, it should still have a license, even if proprietary/closed source. Without it, we don't know how to license the code release, what limitations it puts on distribution, etc.

Re: What is the LICENSE for esp-at

Posted: Sun Aug 12, 2018 5:55 pm
by Franco
Hi Jonathan, in github.com/espressif/esp32-at/blob/master/main/app_main.c and other *.c or *.h headers:


/*

* ESPRESSIF MIT License

*

* Copyright (c) 2017 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD>

*

* Permission is hereby granted for use on ESPRESSIF SYSTEMS ESP32 only, in which case,

* it is 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.

*

Re: What is the LICENSE for esp-at

Posted: Mon Aug 13, 2018 2:17 am
by ESP_Sprite
To be fair, that's only for that C file. We should have an overall project license as well; for example the .a files can't have a header like this. I'll poke the devs, see if we can get this fixed.

Re: What is the LICENSE for esp-at

Posted: Fri Aug 17, 2018 2:37 am
by Helen L