<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/stmhal/hal, branch travis-esp8266</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=travis-esp8266</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=travis-esp8266'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2016-06-29T13:28:49+00:00</updated>
<entry>
<title>stmhal: Update HALCOMMITS due to change to hal</title>
<updated>2016-06-29T13:28:49+00:00</updated>
<author>
<name>dpslwk</name>
<email>dps.lwk@gmail.com</email>
</author>
<published>2016-06-29T11:22:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=14b7c3e59c929ed3a0ac4dd91a77d5dd9d555abc'/>
<id>urn:sha1:14b7c3e59c929ed3a0ac4dd91a77d5dd9d555abc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: Port of f4 hal commit 1d7fb82 to l4 hal</title>
<updated>2016-06-29T13:27:55+00:00</updated>
<author>
<name>dpslwk</name>
<email>dps.lwk@gmail.com</email>
</author>
<published>2016-06-27T08:33:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=daa279a3a1b38bc7a8218e2c6186e63483c7cfc3'/>
<id>urn:sha1:daa279a3a1b38bc7a8218e2c6186e63483c7cfc3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: Update HALCOMMITS due to change to hal.</title>
<updated>2016-04-16T21:00:49+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-04-16T21:00:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=e943a407f2b1fbdbffdb257803e090625679b7ec'/>
<id>urn:sha1:e943a407f2b1fbdbffdb257803e090625679b7ec</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: L4: Adapt UART HAL to avoid 64-bit integer division.</title>
<updated>2016-04-16T20:54:19+00:00</updated>
<author>
<name>Tobias Badertscher</name>
<email>python@baerospace.ch</email>
</author>
<published>2016-03-16T15:51:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d4c33499579eb8f4febec2f5f01f5021f719fdaf'/>
<id>urn:sha1:d4c33499579eb8f4febec2f5f01f5021f719fdaf</id>
<content type='text'>
64-bit integer division brings a dependency on library functions. It is
avoided here by dividing fck and baud by a common divisior.  The error
is the better (1/(2*0x300)) as with 64 bit division (1/(0x300)).
</content>
</entry>
<entry>
<title>stmhal: L4: Add basic STM32L4xx HAL files.</title>
<updated>2016-04-16T20:51:40+00:00</updated>
<author>
<name>Tobias Badertscher</name>
<email>python@baerospace.ch</email>
</author>
<published>2016-03-09T14:48:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f4942db044e9f614a9fc7254bb72b3441a2362a2'/>
<id>urn:sha1:f4942db044e9f614a9fc7254bb72b3441a2362a2</id>
<content type='text'>
These files come from STM32Cube_FW_L4_V1.3.0, with Windows line endings
converted to unix.  Only basic HAL files are added.  In addition the QSPI
support is included to support later external QSPI flash as mass storage.
</content>
</entry>
<entry>
<title>stmhal: Update HALCOMMITS due to change to hal.</title>
<updated>2016-01-30T00:05:46+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-01-30T00:05:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=db573082b5f4843c1c5ad572e84b918146799bf0'/>
<id>urn:sha1:db573082b5f4843c1c5ad572e84b918146799bf0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: In HAL I2C driver, move DMA setup to after sending I2C address.</title>
<updated>2016-01-30T00:02:21+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2016-01-30T00:02:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ea040a4f9ace1c50abc22ab755415305fd2bda41'/>
<id>urn:sha1:ea040a4f9ace1c50abc22ab755415305fd2bda41</id>
<content type='text'>
Previous to this patch the DMA was setup and then the I2C address sent.
If the I2C address sending failed (eg no I2C device on the bus) then the
DMA was left in an inconsistent state.

This patch moves the DMA setup to after a successful sending of the I2C
address(es).

See issue #1765.
</content>
</entry>
<entry>
<title>stmhal: Add HALCOMMITS file with list of commits that touch the hal.</title>
<updated>2015-08-02T23:55:36+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-08-02T23:55:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4434e43fa150eee99cc120e97c26ad6b3fa8a15d'/>
<id>urn:sha1:4434e43fa150eee99cc120e97c26ad6b3fa8a15d</id>
<content type='text'>
This file should be kept up to date with list of hal commits.
</content>
</entry>
<entry>
<title>stmhal: Port of f4 hal commit 1d7fb82 to f7 hal</title>
<updated>2015-08-02T23:49:36+00:00</updated>
<author>
<name>Dave Hylands</name>
<email>dhylands@gmail.com</email>
</author>
<published>2015-08-01T22:37:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7a55c1a88473d36d4a907c1a2e33967a6c38d157'/>
<id>urn:sha1:7a55c1a88473d36d4a907c1a2e33967a6c38d157</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stmhal: Port of f4 hal commit 09de030 to f7 hal</title>
<updated>2015-08-02T23:49:36+00:00</updated>
<author>
<name>Dave Hylands</name>
<email>dhylands@gmail.com</email>
</author>
<published>2015-08-01T22:20:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=28e51c9eb1f633bb4f0a17e964ef7791d54c913d'/>
<id>urn:sha1:28e51c9eb1f633bb4f0a17e964ef7791d54c913d</id>
<content type='text'>
</content>
</entry>
</feed>
