atmel-samd: Enable full urandom module from extmod. #24
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a small change to the port config to enable the urandom module included in the extmod dir. The full urandom module is enabled so all of its functions are available (the minimum module is too low level and only provides an integer with x random bits, whereas the full module provides the expected python randint, uniform, choice, etc. functions).
The generator just uses a software random number generator so it's pseudorandom numbers, but that's the best the SAMD21 can do. You can seed the generator with a value, perhaps like a random ADC reading (although they don't appear to fluctuate much on feathers) or maybe a time.ticks_ms value.
Also of note there is no explicit alias between urandom and random. IMHO this is fine since this module isn't a complete python random module implementation.
The impact of enabling this module is an increase of about 900 bytes on the firmware size too.