diff options
| author | sommersoft <sommersoft@users.noreply.github.com> | 2018-01-18 13:39:11 -0600 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2018-01-18 11:39:11 -0800 |
| commit | 44bc1711aa2eb093329bdbd4ee8c137bd2f7a9f4 (patch) | |
| tree | 4a19220e4aec23fcab2e0170d3c8e6a021f3a628 /shared-bindings/microcontroller/Processor.h | |
| parent | dfa6b6e9c5ec8d7b2a085eb9ddcf565c3433d1c1 (diff) | |
Added Unique ID Functions/Updated Support Matrix (#527)
shared_bindings/index.rst: updated Support Matrix format as discussed in PR #503 & Issue #448.
shared-bindings/microcontroller/Processor.c & .h: added UID lookup functionality for use with all ports. Fixes #462.
Diffstat (limited to 'shared-bindings/microcontroller/Processor.h')
| -rw-r--r-- | shared-bindings/microcontroller/Processor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-bindings/microcontroller/Processor.h b/shared-bindings/microcontroller/Processor.h index a79dea478..28f054420 100644 --- a/shared-bindings/microcontroller/Processor.h +++ b/shared-bindings/microcontroller/Processor.h @@ -35,5 +35,6 @@ const mp_obj_type_t mcu_processor_type; uint32_t common_hal_mcu_processor_get_frequency(void); float common_hal_mcu_processor_get_temperature(void); +void common_hal_mcu_processor_get_uid(uint8_t raw_id[]); #endif // MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER_PROCESSOR_H |
