summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2020-11-24 23:36:59 -0500
committerDan Halbert <halbert@halwitz.org>2020-11-24 23:37:05 -0500
commitf868cc5dd02319957500180541281f41ec0d0573 (patch)
tree23e3ff7b09a808e502725be85528b721b86829ef /shared-bindings/microcontroller
parent7a45afc54919162df342fab421ed113ff1771d01 (diff)
some API renaming and bug fixes; fix docs
Diffstat (limited to 'shared-bindings/microcontroller')
-rw-r--r--shared-bindings/microcontroller/Processor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/microcontroller/Processor.c b/shared-bindings/microcontroller/Processor.c
index ea4368821..90cc02fe3 100644
--- a/shared-bindings/microcontroller/Processor.c
+++ b/shared-bindings/microcontroller/Processor.c
@@ -67,8 +67,8 @@ const mp_obj_property_t mcu_processor_frequency_obj = {
},
};
-//| reset_reason: `microcontroller.ResetReason`
-//| """The reason the microcontroller started up from reset state."""
+//| reset_reason: microcontroller.ResetReason
+//| """The reason the microcontroller started up from reset state."""
//|
STATIC mp_obj_t mcu_processor_get_reset_reason(mp_obj_t self) {
return cp_enum_find(&mcu_reset_reason_type, common_hal_mcu_processor_get_reset_reason());