| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
| |
Otherwise these classes are refered to with a double prefix, like
pyb.pyb.ADC.
Signed-off-by: Damien George <damien@micropython.org>
|
|
|
|
| |
To prevent "non-default argument follows default argument" errors.
|
|
|
|
| |
See https://www.oshwa.org/a-resolution-to-redefine-spi-signal-names
|
|
|
|
| |
"buses" is the widely accepted plural form of "bus".
|
|
|
|
|
|
|
| |
Latest versions of Sphinx (at least 3.1.0) do not need the `*` escaped and
will render the `\` in the output if it is there, so remove it.
Fixes issue #6209.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
By virtue of its name, the pyb module would only be available on a pyboard
and so does not need to have conditional "only" directives throughout its
documentation.
These conditionals were added mostly in
cfcf47c0644952358e1a260db159e807872a37e6 in the initial development of the
cc3200 port, which had the pyb module before it switched to the machine
module. And wipy only conditionals were removed from the pyb module
documentation in 4542643025c77a7272bde348b89d5039aea28d23, so there's no
need to retain any more conditionals.
|
|
|
|
| |
Based on https://github.com/micropython/micropython/pull/2210 .
|
|
|
|
|
| |
Class designator will be used as is in indexes, so must match actual class
name.
|
|
|
|
|
| |
Makes sure that classes described in these separate files are properly
designated as belonging to "pyb" module in indexes.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
The nss param in the pyboard has a different meaning that doesn't
apply to the WiPy.
|
| |
|
|
|
|
| |
This makes all common files "port-aware" using the .. only directive.
|
| |
|
| |
|
| |
|
| |
|
|
The inline docs (prefixed with /// in .c files) have been converted to
RST format and put in the docs subdirectory.
|