The documentation here says microcontroller.nvm should return either nvm.ByteArray when available or None. I am was looking at my Trinket M0 (Circuitpython 5.2.0) and it gave me AttributeError: 'Processor' object has no attribute 'nvm' ... is this documentation error or an issue with the Trinket M0 build?
>>> import microcontroller as mcu
>>> mcu.cpu
<Processor>
>>> help(mcu.cpu)
object <Processor> is of type Processor
frequency -- <property>
temperature -- <property>
uid -- <property>
voltage -- <property>
>>> mcu.cpu.uid
bytearray(b'\xec=-\xf40TLPJ1.72\x07\t\xff')
>>> mcu.cpu.voltage
3.31917
>>> mcu.cpu.temperature
20.8005
>>> mcu.cpu.frequency
48000000
>>> mcu.cpu.nvm
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Processor' object has no attribute 'nvm'
The documentation here says
microcontroller.nvmshould return eithernvm.ByteArraywhen available orNone. I am was looking at my Trinket M0 (Circuitpython 5.2.0) and it gave meAttributeError: 'Processor' object has no attribute 'nvm'... is this documentation error or an issue with the Trinket M0 build?