Skip to content

Commit e0ddd52

Browse files
authored
Add Processor to microcontroller documentation TOC (#237)
1 parent 6467e3d commit e0ddd52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

shared-bindings/microcontroller/__init__.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,19 @@
5858
//| :maxdepth: 3
5959
//|
6060
//| Pin
61+
//| Processor
6162
//|
6263

6364
//| .. attribute:: cpu
6465
//|
65-
//| CPU information and control, such as temperature and clock frequency.
66+
//| CPU information and control, such as `cpu.temperature` and `cpu.frequency`
67+
//| (clock frequency).
6668
//| This object is the sole instance of `microcontroller.Processor`.
6769
//|
6870

6971
//| .. method:: delay_us(delay)
7072
//|
71-
//| Dedicated delay method used for very short delays. DO NOT do long delays
73+
//| Dedicated delay method used for very short delays. **Do not** do long delays
7274
//| because it will stall any concurrent code.
7375
//|
7476
STATIC mp_obj_t mcu_delay_us(mp_obj_t delay_obj) {

0 commit comments

Comments
 (0)