Skip to content

Commit af7f430

Browse files
Change the RTD theme (earlephilhower#554)
Alabaster is not my favorite, try something with colors...
1 parent 797abb5 commit af7f430

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# import os
2020
# import sys
2121
# sys.path.insert(0, os.path.abspath('.'))
22-
22+
import sphinx_rtd_theme
2323

2424
# -- General configuration ------------------------------------------------
2525

@@ -30,7 +30,7 @@
3030
# Add any Sphinx extension module names here, as strings. They can be
3131
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3232
# ones.
33-
extensions = []
33+
extensions = ['sphinx_rtd_theme']
3434

3535
# Add any paths that contain templates here, relative to this directory.
3636
templates_path = ['_templates']
@@ -46,7 +46,7 @@
4646

4747
# General information about the project.
4848
project = u'Arduino-Pico'
49-
copyright = u'2021, Earle F. Philhower, III'
49+
copyright = u'2022, Earle F. Philhower, III'
5050
author = u'Earle F. Philhower, III'
5151

5252
# The version info for the project you're documenting, acts as replacement for
@@ -82,7 +82,7 @@
8282
# The theme to use for HTML and HTML Help pages. See the documentation for
8383
# a list of builtin themes.
8484
#
85-
html_theme = 'alabaster'
85+
html_theme = 'sphinx_rtd_theme'
8686

8787
# Theme options are theme-specific and customize the look and feel of a theme
8888
# further. For a list of options available for each theme, see the

docs/freertos.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FreeRTOS
2-
========
1+
FreeRTOS SMP
2+
============
33

4-
The SMP port of FreeRTOS is included with the core. This allows complex task operations
5-
and real preemptive multithreading in your sketches. While the ``setup1`` and ``loop1``
6-
way of multitasking is simplest for most folks, FreeRTOS is much more powerful.
4+
The SMP (multicore) port of FreeRTOS is included with the core. This allows complex
5+
task operations and real preemptive multithreading in your sketches. While the
6+
``setup1`` and ``loop1`` way of multitasking is simplest for most folks, FreeRTOS
7+
is much more powerful.
78

89
Enabling FreeRTOS
910
-----------------

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For the latest version, always check https://github.com/earlephilhower/arduino-p
3737
USB (Arduino and Adafruit_TinyUSB) <usb>
3838
Multicore Processing <multicore>
3939

40-
FreeRTOS <freertos>
40+
FreeRTOS SMP (multicore) <freertos>
4141

4242
Ported/Optimized Libraries <libraries>
4343
Using Pico-SDK <sdk>

0 commit comments

Comments
 (0)