Skip to content

Commit 78ae85b

Browse files
authored
Merge branch 'master' into dev
2 parents 862420b + 3d91785 commit 78ae85b

File tree

6 files changed

+76
-34
lines changed

6 files changed

+76
-34
lines changed

.github/ISSUE_TEMPLATE.md

-33
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
### Expected behavior
11+
12+
### Actual behavior
13+
14+
### Test code
15+
Provide a [Minimal, Complete, and Verifiable example](http://stackoverflow.com/help/mcve) which will reproduce the problem.
16+
```Lua
17+
-- add code here
18+
```
19+
### NodeMCU startup banner
20+
You MUST include the firmware startup banner to describe the version you are using. We reserve the right to immediately close any bug that doesn't.
21+
22+
### Hardware
23+
Describe which ESP8266/ESP32 device you use and document any special hardware setup
24+
required to reproduce the problem.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
### Missing feature
11+
See issue #1010 and note that we reserve the right to close feature requests if the originating poster is not proposing to resource the development him or herself.
12+
13+
### Justification
14+
Tell us why you would like to see this feature added.
15+
16+
### Workarounds
17+
Are there any workarounds you currently have in place because the feature is missing?

.github/ISSUE_TEMPLATE/question.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Question
3+
about: Use Stack Overflow instead
4+
title: "\U0001F649"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
🛑 𝙎𝙏𝙊𝙋
11+
12+
This issue tracker is not the place for questions!
13+
14+
If you want to ask how to do something, or to understand why something isn't working the way you expect it to, see https://nodemcu.readthedocs.io/en/latest/support/
15+
16+
We close all questions without reading them.

.github/stale.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 360
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 14
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
- governance
10+
# Label to use when marking an issue as stale
11+
staleLabel: stale
12+
# Comment to post when marking an issue as stale. Set to `false` to disable
13+
markComment: >
14+
This issue has been automatically marked as stale because it has not had
15+
recent activity. It will be closed if no further activity occurs. Thank you
16+
for your contributions.
17+
# Comment to post when closing a stale issue. Set to `false` to disable
18+
closeComment: false

docs/flash.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,6 @@ Connecting...
117117
Manufacturer: e0
118118
Device: 4016
119119
```
120-
The chip ID can then be looked up in [https://code.coreboot.org/p/flashrom/source/tree/HEAD/trunk/flashchips.h](https://code.coreboot.org/p/flashrom/source/tree/HEAD/trunk/flashchips.h). This leads to a manufacturer name and a chip model name/number e.g. `AMIC_A25LQ032`. That information can then be fed into your favorite search engine to find chip descriptions and data sheets.
120+
The chip ID can then be looked up in [https://review.coreboot.org/cgit/flashrom.git/tree/flashchips.h](https://review.coreboot.org/cgit/flashrom.git/tree/flashchips.h). This leads to a manufacturer name and a chip model name/number e.g. `AMIC_A25LQ032`. That information can then be fed into your favorite search engine to find chip descriptions and data sheets.
121121

122122
By convention the last two or three digits in the module name denote the capacity in megabits. So, `A25LQ032` in the example above is a 32Mb(=4MB) module.

0 commit comments

Comments
 (0)