Skip to content
This repository was archived by the owner on Jan 31, 2024. It is now read-only.

Commit bd180c2

Browse files
authored
v1.4.1 for Teensy41 and QNEthernet
### Releases v1.4.1 1. Initial coding for **Teensy 4.1 using built-in QNEthernet** 2. Bump up version to v1.4.1 to sync with [AsyncWebServer_STM32](https://github.com/khoih-prog/AsyncWebServer_STM32) v1.4.1
1 parent 9878227 commit bd180c2

File tree

64 files changed

+19065
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+19065
-5
lines changed

CONTRIBUTING.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
## Contributing to AsyncWebServer_Teensy41
2+
3+
### Reporting Bugs
4+
5+
Please report bugs in AsyncWebServer_Teensy41 if you find them.
6+
7+
However, before reporting a bug please check through the following:
8+
9+
* [Existing Open Issues](https://github.com/khoih-prog/AsyncWebServer_Teensy41/issues) - someone might have already encountered this.
10+
11+
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncWebServer_Teensy41/issues/new).
12+
13+
### How to submit a bug report
14+
15+
Please ensure to specify the following:
16+
17+
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18+
* `Teensyduino` Core Version (e.g. `Teensyduino core v1.56`)
19+
* `QNEthernet` library version (e.g. `QNEthernet v0.13.0`)
20+
* Board type and relevant info
21+
* Contextual information (e.g. what you were trying to achieve)
22+
* Simplest possible steps to reproduce
23+
* Anything that might be relevant in your opinion, such as:
24+
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a`
25+
* Network configuration
26+
27+
28+
### Example
29+
30+
```
31+
Arduino IDE version: 1.8.19
32+
Teensyduino core v1.56
33+
Teensy 4.1 using QNEthernet v0.13.0
34+
OS: Ubuntu 20.04 LTS
35+
Linux xy-Inspiron-3593 5.13.0-35-generic #40~20.04.1-Ubuntu SMP Mon Mar 7 09:18:32 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
36+
37+
Context:
38+
I encountered an endless loop while trying to connect to Local WiFi.
39+
40+
Steps to reproduce:
41+
1. ...
42+
2. ...
43+
3. ...
44+
4. ...
45+
```
46+
### Sending Feature Requests
47+
48+
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
49+
50+
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncWebServer_Teensy41/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
51+
52+
### Sending Pull Requests
53+
54+
Pull Requests with changes and fixes are also welcome!
55+

LICENSE

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GNU GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

4-
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
4+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
55
Everyone is permitted to copy and distribute verbatim copies
66
of this license document, but changing it is not allowed.
77

@@ -645,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
645645
GNU General Public License for more details.
646646

647647
You should have received a copy of the GNU General Public License
648-
along with this program. If not, see <https://www.gnu.org/licenses/>.
648+
along with this program. If not, see <http://www.gnu.org/licenses/>.
649649

650650
Also add information on how to contact you by electronic and paper mail.
651651

@@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
664664
You should also get your employer (if you work as a programmer) or school,
665665
if any, to sign a "copyright disclaimer" for the program, if necessary.
666666
For more information on this, and how to apply and follow the GNU GPL, see
667-
<https://www.gnu.org/licenses/>.
667+
<http://www.gnu.org/licenses/>.
668668

669669
The GNU General Public License does not permit incorporating your program
670670
into proprietary programs. If your program is a subroutine library, you
671671
may consider it more useful to permit linking proprietary applications with
672672
the library. If this is what you want to do, use the GNU Lesser General
673673
Public License instead of this License. But first, please read
674-
<https://www.gnu.org/licenses/why-not-lgpl.html>.
674+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

0 commit comments

Comments
 (0)