1from esp_docs.conf_docs import *  # noqa: F403,F401
2
3languages = ["en"]
4idf_targets = ["esp8266", "esp32", "esp32s2", "esp32s3", "esp32c3"]
5
6# link roles config
7github_repo = "espressif/esptool"
8
9# context used by sphinx_idf_theme
10html_context["github_user"] = "espressif"
11html_context["github_repo"] = "esptool"
12
13html_static_path = ["../_static"]
14
15# Conditional content
16extensions += ["esp_docs.esp_extensions.dummy_build_system"]
17
18ESP8266_DOCS = []
19
20ESP32_DOCS = [
21    "espefuse/*",
22    "espsecure/*",
23]
24
25ESP32S2_DOCS = ESP32_DOCS
26
27ESP32C3_DOCS = ESP32S2_DOCS
28
29ESP32S3_DOCS = ESP32S2_DOCS
30
31conditional_include_dict = {
32    "esp8266": ESP8266_DOCS,
33    "esp32": ESP32_DOCS,
34    "esp32s2": ESP32S2_DOCS,
35    "esp32c3": ESP32C3_DOCS,
36    "esp32s3": ESP32S3_DOCS,
37}
38
39# Extra options required by sphinx_idf_theme
40project_slug = "esptool"
41
42versions_url = "./_static/esptool_versions.js"
43