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

Commit ef448a8

Browse files
authored
Merge pull request #192 from mathieucarbou/move
Prepare move to https://github.com/ESP32Async/AsyncTCP
2 parents ca0ead0 + 5233259 commit ef448a8

26 files changed

+2093
-1626
lines changed

.clang-format

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Language: Cpp
2+
BasedOnStyle: LLVM
3+
4+
AccessModifierOffset: -2
5+
AlignConsecutiveMacros: true
6+
AllowAllArgumentsOnNextLine: false
7+
AllowAllParametersOfDeclarationOnNextLine: false
8+
AllowShortIfStatementsOnASingleLine: false
9+
AllowShortLambdasOnASingleLine: Inline
10+
BinPackArguments: false
11+
ColumnLimit: 0
12+
ContinuationIndentWidth: 2
13+
FixNamespaceComments: false
14+
IndentAccessModifiers: true
15+
IndentCaseLabels: true
16+
IndentPPDirectives: BeforeHash
17+
IndentWidth: 2
18+
NamespaceIndentation: All
19+
PointerAlignment: Left
20+
ReferenceAlignment: Left
21+
TabWidth: 2
22+
UseTab: Never

.clang-format copy

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Language: Cpp
2+
BasedOnStyle: LLVM
3+
4+
AccessModifierOffset: -2
5+
AlignConsecutiveMacros: true
6+
AllowAllArgumentsOnNextLine: false
7+
AllowAllParametersOfDeclarationOnNextLine: false
8+
AllowShortIfStatementsOnASingleLine: false
9+
AllowShortLambdasOnASingleLine: Inline
10+
BinPackArguments: false
11+
ColumnLimit: 0
12+
ContinuationIndentWidth: 2
13+
FixNamespaceComments: false
14+
IndentAccessModifiers: true
15+
IndentCaseLabels: true
16+
IndentPPDirectives: BeforeHash
17+
IndentWidth: 2
18+
NamespaceIndentation: All
19+
PointerAlignment: Left
20+
ReferenceAlignment: Left
21+
TabWidth: 2
22+
UseTab: Never

.github/ISSUE_TEMPLATE/bug_report.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Please make sure to go through the recommendations before opening a bug report:**
11+
12+
[https://github.com/ESP32Async/AsyncTCP?tab=readme-ov-file#important-recommendations](https://github.com/ESP32Async/AsyncTCP?tab=readme-ov-file#important-recommendations)
13+
14+
**Description**
15+
16+
A clear and concise description of what the bug is.
17+
18+
**Board**
19+
20+
esp32dev, esp32s3, etc
21+
22+
**Ethernet adapter used ?**
23+
24+
If yes, please specify which one
25+
26+
**Stack trace**
27+
28+
Please provide the stack trace here taken with `monitor_filters = esp32_exception_decoder`.
29+
**Any issue opened with a non readable stack trace will be ignored because not helpful at all.**
30+
31+
As an alternative, you can use [https://maximeborges.github.io/esp-stacktrace-decoder/](https://maximeborges.github.io/esp-stacktrace-decoder/).
32+
33+
**Additional notes**
34+
35+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/question.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Question
3+
about: Describe your question
4+
title: "[Q]"
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Set update schedule for GitHub Actions
2+
3+
version: 2
4+
updates:
5+
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
# Check for updates to GitHub Actions every week
10+
interval: "weekly"

.github/scripts/install-arduino-core-esp32.sh

-36
This file was deleted.

.github/scripts/install-arduino-ide.sh

-220
This file was deleted.

0 commit comments

Comments
 (0)