<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openmano-mpy/ports/nrf/modules/uos, branch master</title>
<subtitle>MicroPython source and hardware configuration for OpenMano</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/'/>
<entry>
<title>nrf: Remove unnecessary includes of mpconfigport.h and its header guard.</title>
<updated>2020-09-08T14:13:34+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2020-09-08T03:52:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=27e117307d7d5b63955940866e6094bedb7d299e'/>
<id>27e117307d7d5b63955940866e6094bedb7d299e</id>
<content type='text'>
The mpconfigport.h file is an internal header and should only ever be
included once by mpconfig.h.

Signed-off-by: Damien George &lt;damien@micropython.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The mpconfigport.h file is an internal header and should only ever be
included once by mpconfig.h.

Signed-off-by: Damien George &lt;damien@micropython.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>all: Remove commented-out include statements.</title>
<updated>2020-04-23T01:24:15+00:00</updated>
<author>
<name>stijn</name>
</author>
<published>2020-04-16T07:22:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=d6243568a05d423b58522435c3779975acbf56dd'/>
<id>d6243568a05d423b58522435c3779975acbf56dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>all: Use MP_ERROR_TEXT for all error messages.</title>
<updated>2020-04-05T05:02:06+00:00</updated>
<author>
<name>Jim Mussared</name>
</author>
<published>2020-03-02T11:35:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=def76fe4d9bbc2c342594dc05861b24d7165d274'/>
<id>def76fe4d9bbc2c342594dc05861b24d7165d274</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf: Remove custom "random" module and use extmod version instead.</title>
<updated>2020-02-18T01:43:16+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2020-02-14T02:06:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=6ad3bb1e121128b3ad3a5acacda97459f3a75514'/>
<id>6ad3bb1e121128b3ad3a5acacda97459f3a75514</id>
<content type='text'>
Hardware RNG code is moved to drivers/rng.[ch].
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Hardware RNG code is moved to drivers/rng.[ch].
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf: Change types to size_t for all uses of mp_obj_str_get_data.</title>
<updated>2019-05-13T02:39:56+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2019-05-13T02:39:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=7e21cf723a42321e759fdf77b24c04ce0a6afb29'/>
<id>7e21cf723a42321e759fdf77b24c04ce0a6afb29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf/uos: Add mbfs __enter__ and __exit__ handlers.</title>
<updated>2018-08-01T12:12:34+00:00</updated>
<author>
<name>Stig Bjørlykke</name>
</author>
<published>2018-07-27T20:36:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=b6e49da407afe1fa7054dcb8a5072bb23bd8cadf'/>
<id>b6e49da407afe1fa7054dcb8a5072bb23bd8cadf</id>
<content type='text'>
This will make 'with open('file', 'r') as f:' work by properly close
the file after the suite is finished.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This will make 'with open('file', 'r') as f:' work by properly close
the file after the suite is finished.
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf: Properly use (void) instead of () for function definitions.</title>
<updated>2018-07-20T04:11:28+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2018-07-19T00:30:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=9addc38af4419b6895b7384c8ab7b6ac76510e09'/>
<id>9addc38af4419b6895b7384c8ab7b6ac76510e09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf: Use mp_raise_ValueError instead of nlr_raise(...)</title>
<updated>2018-07-18T13:25:17+00:00</updated>
<author>
<name>Ayke van Laethem</name>
</author>
<published>2018-07-18T13:25:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=2f0f4fdcd34ecfe16cb9a39bfc070ad8a6329ea0'/>
<id>2f0f4fdcd34ecfe16cb9a39bfc070ad8a6329ea0</id>
<content type='text'>
Saves 60 bytes on the nRF52 with SD disabled. There will be a bigger
saving with SD enabled and/or on the micro:bit board.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Saves 60 bytes on the nRF52 with SD disabled. There will be a bigger
saving with SD enabled and/or on the micro:bit board.
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf: Move pyb module to boards module</title>
<updated>2018-07-18T07:12:26+00:00</updated>
<author>
<name>Glenn Ruben Bakke</name>
</author>
<published>2018-05-22T06:01:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=6011441342f32ff644ad56abcf002d585124bd7c'/>
<id>6011441342f32ff644ad56abcf002d585124bd7c</id>
<content type='text'>
Cleaning up use of "pyb" module.
Moving the file to a new folder and updating the
makefile accordingly. New module created called
"board" to take over the functionality of the legacy
"pyb" module.

Updating outdated documentation referring to pyb.Pin,
to now point to machine.Pin.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cleaning up use of "pyb" module.
Moving the file to a new folder and updating the
makefile accordingly. New module created called
"board" to take over the functionality of the legacy
"pyb" module.

Updating outdated documentation referring to pyb.Pin,
to now point to machine.Pin.
</pre>
</div>
</content>
</entry>
<entry>
<title>nrf: Enable micro:bit FS by default</title>
<updated>2018-07-18T07:12:26+00:00</updated>
<author>
<name>Glenn Ruben Bakke</name>
</author>
<published>2018-05-08T20:20:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=d3311681a95a74183e676ff316febc3b9c5cf528'/>
<id>d3311681a95a74183e676ff316febc3b9c5cf528</id>
<content type='text'>
Update configuration define from
MICROPY_HW_HAS_BUILTIN_FLASH to MICROPY_MBFS.

MICROPY_MBFS will enable the builtin flash as
part of enabling the micro:bit FS.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update configuration define from
MICROPY_HW_HAS_BUILTIN_FLASH to MICROPY_MBFS.

MICROPY_MBFS will enable the builtin flash as
part of enabling the micro:bit FS.
</pre>
</div>
</content>
</entry>
</feed>
