We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6467e3d commit e0ddd52Copy full SHA for e0ddd52
shared-bindings/microcontroller/__init__.c
@@ -58,17 +58,19 @@
58
//| :maxdepth: 3
59
//|
60
//| Pin
61
+//| Processor
62
63
64
//| .. attribute:: cpu
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).
68
//| This object is the sole instance of `microcontroller.Processor`.
69
70
71
//| .. method:: delay_us(delay)
72
-//| 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
74
//| because it will stall any concurrent code.
75
76
STATIC mp_obj_t mcu_delay_us(mp_obj_t delay_obj) {
0 commit comments