|
| 1 | +## Contributing to ESP32_W5500_Manager |
| 2 | + |
| 3 | +### Reporting Bugs |
| 4 | + |
| 5 | +Please report bugs in ESP32_W5500_Manager 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/ESP32_W5500_Manager/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/ESP32_W5500_Manager/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 | +* Board Core Version (e.g. ESP32 core v2.0.5) |
| 19 | +* Contextual information (e.g. what you were trying to achieve) |
| 20 | +* Simplest possible steps to reproduce |
| 21 | +* Anything that might be relevant in your opinion, such as: |
| 22 | + * Operating system (Windows, Ubuntu, etc.) and the output of `uname -a` |
| 23 | + * Network configuration |
| 24 | + |
| 25 | + |
| 26 | +Please be educated, civilized and constructive. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted. |
| 27 | + |
| 28 | + |
| 29 | +### Example |
| 30 | + |
| 31 | +``` |
| 32 | +Arduino IDE version: 1.8.19 |
| 33 | +ESP32_DEV board |
| 34 | +ESP32 core v2.0.5 |
| 35 | +OS: Ubuntu 20.04 LTS |
| 36 | +Linux xy-Inspiron-3593 5.15.0-56-generic #62~20.04.1-Ubuntu SMP Tue Nov 22 21:24:20 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux |
| 37 | +
|
| 38 | +Context: |
| 39 | +I encountered a crash while using this library |
| 40 | +Steps to reproduce: |
| 41 | +1. ... |
| 42 | +2. ... |
| 43 | +3. ... |
| 44 | +4. ... |
| 45 | +``` |
| 46 | + |
| 47 | +### Additional context |
| 48 | + |
| 49 | +Add any other context about the problem here. |
| 50 | + |
| 51 | +--- |
| 52 | + |
| 53 | +### Sending Feature Requests |
| 54 | + |
| 55 | +Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful. |
| 56 | + |
| 57 | +There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/ESP32_W5500_Manager/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them. |
| 58 | + |
| 59 | +--- |
| 60 | + |
| 61 | +### Sending Pull Requests |
| 62 | + |
| 63 | +Pull Requests with changes and fixes are also welcome! |
| 64 | + |
| 65 | +Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux) |
| 66 | + |
| 67 | +1. Change directory to the library GitHub |
| 68 | + |
| 69 | +``` |
| 70 | +xy@xy-Inspiron-3593:~$ cd Arduino/xy/ESP32_W5500_Manager_GitHub/ |
| 71 | +xy@xy-Inspiron-3593:~/Arduino/xy/ESP32_W5500_Manager_GitHub$ |
| 72 | +``` |
| 73 | + |
| 74 | +2. Issue astyle command |
| 75 | + |
| 76 | +``` |
| 77 | +xy@xy-Inspiron-3593:~/Arduino/xy/ESP32_W5500_Manager_GitHub$ bash utils/restyle.sh |
| 78 | +``` |
| 79 | + |
0 commit comments