summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller/__init__.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/microcontroller/__init__.c')
-rw-r--r--shared-bindings/microcontroller/__init__.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/shared-bindings/microcontroller/__init__.c b/shared-bindings/microcontroller/__init__.c
index 0546ebf30..d2567bd65 100644
--- a/shared-bindings/microcontroller/__init__.c
+++ b/shared-bindings/microcontroller/__init__.c
@@ -58,17 +58,19 @@
//| :maxdepth: 3
//|
//| Pin
+//| Processor
//|
//| .. attribute:: cpu
//|
-//| CPU information and control, such as temperature and clock frequency.
+//| CPU information and control, such as `cpu.temperature` and `cpu.frequency`
+//| (clock frequency).
//| This object is the sole instance of `microcontroller.Processor`.
//|
//| .. method:: delay_us(delay)
//|
-//| Dedicated delay method used for very short delays. DO NOT do long delays
+//| Dedicated delay method used for very short delays. **Do not** do long delays
//| because it will stall any concurrent code.
//|
STATIC mp_obj_t mcu_delay_us(mp_obj_t delay_obj) {