Skip to content

Commit 18f1c49

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 9323681 + 1cf1c5c commit 18f1c49

File tree

169 files changed

+5650
-775
lines changed

Some content is hidden

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

169 files changed

+5650
-775
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
name: Bug report
3+
about: Please fill in the bug report carefully
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Make your question, not a Statement, inclusive. Include all pertinent information:
11+
12+
What you are trying to do?
13+
Describe your system( Hardware, computer, O/S, core version, environment).
14+
Describe what is failing.
15+
Show the shortest possible code that will duplicate the error.
16+
Show the EXACT error message(it doesn't work is not enough).
17+
All of this work on your part shows us that you have worked to solve YOUR problem. The more complete your issue posting is, the more likely someone will volunteer their time to help you.
18+
19+
If you have a Guru Meditation Error or Backtrace, ***please decode it***:
20+
https://github.com/me-no-dev/EspExceptionDecoder
21+
22+
----------------------------- Remove above -----------------------------
23+
24+
25+
### Hardware:
26+
Board: ?ESP32 Dev Module? ?node32? ?ttgo_lora?
27+
Core Installation version: ?1.0.0? ?1.0.1-rc4? ?1.0.1? ?1.0.1-git?
28+
IDE name: ?Arduino IDE? ?Platform.io? ?IDF component?
29+
Flash Frequency: ?40Mhz?
30+
PSRAM enabled: ?no? ?yes?
31+
Upload Speed: ?115200?
32+
Computer OS: ?Windows 10? ?Mac OSX? ?Ubuntu?
33+
34+
### Description:
35+
Describe your problem here
36+
37+
38+
### Sketch: (leave the backquotes for [code formatting](https://help.github.com/articles/creating-and-highlighting-code-blocks/))
39+
```cpp
40+
41+
//Change the code below by your sketch
42+
#include <Arduino.h>
43+
44+
void setup() {
45+
}
46+
47+
void loop() {
48+
}
49+
```
50+
51+
### Debug Messages:
52+
```
53+
Enable Core debug level: Debug on tools menu of Arduino IDE, then put the serial output here
54+
```

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ set(CORE_SRCS
33
cores/esp32/cbuf.cpp
44
cores/esp32/esp32-hal-adc.c
55
cores/esp32/esp32-hal-bt.c
6+
cores/esp32/esp32-hal-cpu.c
67
cores/esp32/esp32-hal-dac.c
78
cores/esp32/esp32-hal-gpio.c
89
cores/esp32/esp32-hal-i2c.c

Kconfig.projbuild

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ config ARDUHAL_PARTITION_SCHEME_MINIMAL
9090
bool "Minimal (for 2MB FLASH)"
9191
config ARDUHAL_PARTITION_SCHEME_NO_OTA
9292
bool "No OTA (for large apps)"
93+
config ARDUHAL_PARTITION_SCHEME_HUGE_APP
94+
bool "Huge App (for very large apps)"
9395
config ARDUHAL_PARTITION_SCHEME_MIN_SPIFFS
9496
bool "Minimal SPIFFS (for large apps with OTA)"
9597
endchoice
@@ -99,6 +101,7 @@ config ARDUHAL_PARTITION_SCHEME
99101
default "default" if ARDUHAL_PARTITION_SCHEME_DEFAULT
100102
default "minimal" if ARDUHAL_PARTITION_SCHEME_MINIMAL
101103
default "no_ota" if ARDUHAL_PARTITION_SCHEME_NO_OTA
104+
default "huge_app" if ARDUHAL_PARTITION_SCHEME_HUGE_APP
102105
default "min_spiffs" if ARDUHAL_PARTITION_SCHEME_MIN_SPIFFS
103106

104107

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
- [ESP32Dev Board PINMAP](#esp32dev-board-pinmap)
1111

1212
## Development Status
13-
[Latest stable release ![Release Version](https://img.shields.io/github/release/espressif/arduino-esp32.svg?style=plastic) ![Release Date](https://img.shields.io/github/release-date/espressif/arduino-esp32.svg?style=plastic)](https://github.com/espressif/arduino-esp32/releases/latest/)
13+
[Latest stable release ![Release Version](https://img.shields.io/github/release/espressif/arduino-esp32.svg?style=plastic) ![Release Date](https://img.shields.io/github/release-date/espressif/arduino-esp32.svg?style=plastic)](https://github.com/espressif/arduino-esp32/releases/latest/) ![Downloads](https://img.shields.io/github/downloads/espressif/arduino-esp32/latest/total.svg?style=plastic)
1414

15-
[Latest development release ![Development Version](https://img.shields.io/github/release/espressif/arduino-esp32/all.svg?style=plastic) ![Development Date](https://img.shields.io/github/release-date-pre/espressif/arduino-esp32.svg?style=plastic)](https://github.com/espressif/arduino-esp32/releases/latest/)
15+
[Latest development release ![Development Version](https://img.shields.io/github/release/espressif/arduino-esp32/all.svg?style=plastic) ![Development Date](https://img.shields.io/github/release-date-pre/espressif/arduino-esp32.svg?style=plastic)](https://github.com/espressif/arduino-esp32/releases/latest/) ![Downloads](https://img.shields.io/github/downloads-pre/espressif/arduino-esp32/latest/total.svg?style=plastic)
1616

1717
Most of the framework is implemented. Most noticable is the missing analogWrite. While analogWrite is on it's way, there are a few other options that you can use:
1818
- 16 channels [LEDC](cores/esp32/esp32-hal-ledc.h) which is PWM

0 commit comments

Comments
 (0)