summaryrefslogtreecommitdiff
path: root/shared-bindings/board
diff options
context:
space:
mode:
authordherrada <dylan.herrada@gmail.com>2020-05-07 10:54:09 -0400
committerdherrada <dylan.herrada@gmail.com>2020-05-07 10:54:09 -0400
commit2ebe3035dff0ce66b2fe65eb91d6889c4ba93b5c (patch)
tree60954388417613578138c9be870f5b2dc510b042 /shared-bindings/board
parent0e465e63b98c3825298219e2144a145208aaff7f (diff)
Did board, digitalio, displayio
Diffstat (limited to 'shared-bindings/board')
-rw-r--r--shared-bindings/board/__init__.c33
1 files changed, 16 insertions, 17 deletions
diff --git a/shared-bindings/board/__init__.c b/shared-bindings/board/__init__.c
index 3dda59fb8..501879be8 100644
--- a/shared-bindings/board/__init__.c
+++ b/shared-bindings/board/__init__.c
@@ -29,7 +29,7 @@
#include "shared-bindings/board/__init__.h"
-//| :mod:`board` --- Board specific pin names
+//| """:mod:`board` --- Board specific pin names
//| ========================================================
//|
//| .. module:: board
@@ -39,11 +39,11 @@
//| board so don't expect portability when using this module.
//|
//| .. warning:: The board module varies by board. The APIs documented here may or may not be
-//| available on a specific board.
+//| available on a specific board."""
-//| .. function:: I2C()
-//|
-//| Returns the `busio.I2C` object for the board designated SDA and SCL pins. It is a singleton.
+//| def I2C() -> Any:
+//| """Returns the `busio.I2C` object for the board designated SDA and SCL pins. It is a singleton."""
+//| ...
//|
#if BOARD_I2C
@@ -65,10 +65,10 @@ mp_obj_t board_i2c(void) {
MP_DEFINE_CONST_FUN_OBJ_0(board_i2c_obj, board_i2c);
-//| .. function:: SPI()
-//|
-//| Returns the `busio.SPI` object for the board designated SCK, MOSI and MISO pins. It is a
-//| singleton.
+//| def SPI() -> Any:
+//| """Returns the `busio.SPI` object for the board designated SCK, MOSI and MISO pins. It is a
+//| singleton."""
+//| ...
//|
#if BOARD_SPI
mp_obj_t board_spi(void) {
@@ -89,15 +89,14 @@ mp_obj_t board_spi(void) {
#endif
MP_DEFINE_CONST_FUN_OBJ_0(board_spi_obj, board_spi);
-//| .. function:: UART()
-//|
-//| Returns the `busio.UART` object for the board designated TX and RX pins. It is a singleton.
-//|
-//| The object created uses the default parameter values for `busio.UART`. If you need to set
-//| parameters that are not changeable after creation, such as ``receiver_buffer_size``,
-//| do not use `board.UART()`; instead create a `busio.UART` object explicitly with the
-//| desired parameters.
+//| def UART() -> Any:
+//| """Returns the `busio.UART` object for the board designated TX and RX pins. It is a singleton.
//|
+//| The object created uses the default parameter values for `busio.UART`. If you need to set
+//| parameters that are not changeable after creation, such as ``receiver_buffer_size``,
+//| do not use `board.UART()`; instead create a `busio.UART` object explicitly with the
+//| desired parameters."""
+//| ...
//|
#if BOARD_UART
mp_obj_t board_uart(void) {