Skip to content

Commit 44d7bef

Browse files
committed
Docs: Added contributing file to docs source and images size modified
Docs: Fixed typo Docs: Boards tree fixed Removed link from the getting started OS icons Pin layout images updated and added the requirements file for sphinx extensions Copy button extension enabled on conf.py Added information on the Getting Started Guide Removed pygments_style from conf.py Added SoC and Module image Added Windows install guide and boards manager images Added OTA Web Update to the docs and removed from md files Added DFU and ESPNOW files into the docs Fixed Typo Changes on the boards, getting started sections and menu order changed for Lib Builder Added references on the boards to fix broken link Added the basic tutorial as template Fix hardware timers Fixes: #5337 Fixes: #4743 Thanks to @maxgerhardt Added code style reference and WIP on the libs template Added peripherals tutorial Added peripherals tutorial fix Update on the WiFi lib docs and removed old md files Update on the WiFi lib docs Fixed the examples references for WiFi Lib Fixed code-block on begin function - WiFi Docs Updates on WiFi lib docs Fixed the AP section on docs Review in progress: API, boards and tutorials Fixed typo on Strapping pins Review done
1 parent e547644 commit 44d7bef

Some content is hidden

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

69 files changed

+1289
-344
lines changed

Diff for: cores/esp32/esp32-hal-timer.c

+7-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#define HWTIMER_LOCK() portENTER_CRITICAL(timer->lock)
4848
#define HWTIMER_UNLOCK() portEXIT_CRITICAL(timer->lock)
4949

50-
typedef struct {
50+
typedef volatile struct {
5151
union {
5252
struct {
5353
uint32_t reserved0: 10;
@@ -272,6 +272,12 @@ void timerEnd(hw_timer_t *timer){
272272
}
273273

274274
void timerAttachInterrupt(hw_timer_t *timer, void (*fn)(void), bool edge){
275+
#if CONFIG_IDF_TARGET_ESP32
276+
if(edge){
277+
log_w("EDGE timer interrupt does not work properly on ESP32! Setting to LEVEL...");
278+
edge = false;
279+
}
280+
#endif
275281
static bool initialized = false;
276282
static intr_handle_t intr_handle = NULL;
277283
if(intr_handle){

Diff for: docs/OTAWebUpdate/OTAWebUpdate.md

-59
This file was deleted.

Diff for: docs/arduino-ide/boards_manager.md

-12
This file was deleted.

Diff for: docs/arduino-ide/debian_ubuntu.md

-36
This file was deleted.

Diff for: docs/arduino-ide/fedora.md

-18
This file was deleted.

Diff for: docs/arduino-ide/mac.md

-29
This file was deleted.

Diff for: docs/arduino-ide/opensuse.md

-22
This file was deleted.

Diff for: docs/arduino-ide/windows.md

-49
This file was deleted.

Diff for: docs/lib_builder.md

-14
This file was deleted.

Diff for: docs/make.md

-4
This file was deleted.

Diff for: docs/platformio.md

-11
This file was deleted.

Diff for: docs/requirements.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This is a list of python packages used to generate documentation. This file is used with pip:
2+
# pip install --user -r requirements.txt
3+
#
4+
# matplotlib is currently required only by the script generate_chart.py
5+
sphinx-copybutton==0.3.0

Diff for: docs/source/_static/esp32-c3_devkitM-1_pinlayout.png

1.13 MB

Diff for: docs/source/_static/esp32-s2_saola1_pinlayout.png

1.66 MB

Diff for: docs/source/_static/esp32_devkitC_pinlayout.png

1.46 MB

Diff for: docs/source/_static/esp32_pinmap.png

-1.47 MB
Binary file not shown.

Diff for: docs/source/_static/esp32c3_pinmap.png

-1.14 MB
Binary file not shown.

Diff for: docs/source/_static/esp32s2_pinmap.png

-1.67 MB
Binary file not shown.
21.9 KB
18.7 KB

Diff for: docs/source/_static/install_guide_preferences.png

60.9 KB

Diff for: docs/source/_static/logo_espressif.png

10.3 KB

Diff for: docs/source/_static/logo_linux.png

23.8 KB

Diff for: docs/source/_static/logo_macos.png

23.3 KB

Diff for: docs/source/_static/logo_windows.png

3.37 KB
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: docs/source/_static/soc-module.png

8.92 KB
120 KB

Diff for: docs/source/_static/wifi_esp32_ap.png

48.5 KB

Diff for: docs/source/_static/wifi_esp32_sta.png

57.2 KB
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: docs/source/api/bluetooth.rst

+3

Diff for: docs/source/api/deepsleep.rst

+3

Diff for: docs/source/api/espnow.rst

+16

Diff for: docs/source/api/gpio.rst

+3

Diff for: docs/source/api/rainmaker.rst

+3

Diff for: docs/source/api/reset_reason.rst

+3

0 commit comments

Comments
 (0)