<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openmano-mpy/ports/stm32/boards/NUCLEO_F429ZI, 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>stm32/boards: Rework all stm32??xx_hal_conf.h files to use common code.</title>
<updated>2019-06-25T04:18:24+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2019-06-25T03:42:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=009b1f6559fa2a621dcd35916886385327e6abc1'/>
<id>009b1f6559fa2a621dcd35916886385327e6abc1</id>
<content type='text'>
This eliminates a lot of duplicated code in these header files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This eliminates a lot of duplicated code in these header files.
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards: Enable ussl module via mbedtls for boards with network.</title>
<updated>2019-06-24T07:48:28+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2019-06-24T07:48:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=5da60ff9cba990f239bdac2cd7ecdb2f84df4d63'/>
<id>5da60ff9cba990f239bdac2cd7ecdb2f84df4d63</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards: Update to use new build config for lwip component.</title>
<updated>2019-03-04T12:34:03+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2019-03-04T12:34:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=e61862d063b7a19f5baba8e0d1234d648826a616'/>
<id>e61862d063b7a19f5baba8e0d1234d648826a616</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards/NUCLEO_F429ZI: Enable lwIP and Ethernet peripheral.</title>
<updated>2019-02-26T12:32:19+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2019-02-25T05:45:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=823b31e5287ee96c96620dac81cfeafc889a69fd'/>
<id>823b31e5287ee96c96620dac81cfeafc889a69fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/can: Allow CAN pins to be configured per board.</title>
<updated>2018-04-11T06:35:24+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2018-04-11T06:27:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=a7ebac2eaed7eb0da362568b9333339634f1da1d'/>
<id>a7ebac2eaed7eb0da362568b9333339634f1da1d</id>
<content type='text'>
This patch allows a given board to configure which pins are used for the
CAN peripherals, in a similar way to all the other bus peripherals (I2C,
UART, SPI).  To enable CAN on a board the mpconfigboard.h file should
define (for example):

    #define MICROPY_HW_CAN1_TX (pin_B9)
    #define MICROPY_HW_CAN1_RX (pin_B8)
    #define MICROPY_HW_CAN2_TX (pin_B13)
    #define MICROPY_HW_CAN2_RX (pin_B12)

And the board config file should no longer define MICROPY_HW_ENABLE_CAN.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch allows a given board to configure which pins are used for the
CAN peripherals, in a similar way to all the other bus peripherals (I2C,
UART, SPI).  To enable CAN on a board the mpconfigboard.h file should
define (for example):

    #define MICROPY_HW_CAN1_TX (pin_B9)
    #define MICROPY_HW_CAN1_RX (pin_B8)
    #define MICROPY_HW_CAN2_TX (pin_B13)
    #define MICROPY_HW_CAN2_RX (pin_B12)

And the board config file should no longer define MICROPY_HW_ENABLE_CAN.
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/Makefile: Allow a board to config either 1 or 2 firmware sections.</title>
<updated>2018-03-27T10:24:15+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2018-03-27T10:24:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=ed75b2655fd8e5f9c058a97852eb30f354c10206'/>
<id>ed75b2655fd8e5f9c058a97852eb30f354c10206</id>
<content type='text'>
This patch forces a board to explicitly define TEXT1_ADDR in order to
split the firmware into two separate pieces.  Otherwise the default is now
to produce only a single continuous firmware image with all ISR, text and
data together.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch forces a board to explicitly define TEXT1_ADDR in order to
split the firmware into two separate pieces.  Otherwise the default is now
to produce only a single continuous firmware image with all ISR, text and
data together.
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards: Allow boards to have finer control over the linker script.</title>
<updated>2018-03-27T10:17:48+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2018-03-27T10:17:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=7aec06ca9abb8e07ffce09b5a755e2a6f61b6749'/>
<id>7aec06ca9abb8e07ffce09b5a755e2a6f61b6749</id>
<content type='text'>
This patch allows a particular board to independently specify the linker
scripts for 1) the MCU memory layout; 2) how the different firmware
sections are arranged in memory.  Right now all boards follow the same
layout with two separate firmware section, one for the ISR and one for the
text and data.  This leaves room for storage (filesystem data) to live
between the firmware sections.

The idea with this patch is to accommodate boards that don't have internal
flash storage and only need to have one continuous firmware section.  Thus
the common.ld script is renamed to common_ifs.ld to make explicit that it
is used for cases where the board has internal flash storage.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch allows a particular board to independently specify the linker
scripts for 1) the MCU memory layout; 2) how the different firmware
sections are arranged in memory.  Right now all boards follow the same
layout with two separate firmware section, one for the ISR and one for the
text and data.  This leaves room for storage (filesystem data) to live
between the firmware sections.

The idea with this patch is to accommodate boards that don't have internal
flash storage and only need to have one continuous firmware section.  Thus
the common.ld script is renamed to common_ifs.ld to make explicit that it
is used for cases where the board has internal flash storage.
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards: Update all boards to work with new USB configuration.</title>
<updated>2018-02-13T07:57:01+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2018-02-13T07:57:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=34911f1a57296bda532e2460e28bd351198e1e63'/>
<id>34911f1a57296bda532e2460e28bd351198e1e63</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards: Remove all config options that are set to defaults.</title>
<updated>2018-02-09T07:40:40+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2018-02-09T07:40:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=02f88cb2df73b7cf2baf7568c26999269baa45f0'/>
<id>02f88cb2df73b7cf2baf7568c26999269baa45f0</id>
<content type='text'>
mpconfigboard_common.h now sets the defaults so there is no longer a need
to explicitly list all configuration options in a board's mpconfigboard.h
file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
mpconfigboard_common.h now sets the defaults so there is no longer a need
to explicitly list all configuration options in a board's mpconfigboard.h
file.
</pre>
</div>
</content>
</entry>
<entry>
<title>stm32/boards/NUCLEO_F429ZI: Incr CPU freq to 168MHz to get USB working.</title>
<updated>2017-11-15T01:23:29+00:00</updated>
<author>
<name>Damien George</name>
</author>
<published>2017-11-15T01:23:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/openmano-mpy/commit/?id=2cafef857e357bbfcf3bb3c6d10e62b778642695'/>
<id>2cafef857e357bbfcf3bb3c6d10e62b778642695</id>
<content type='text'>
At the original frequency of 90MHz there's no way to get a 48MHz USB clock.
These new setting mirror those of the STM32F429DISC board.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At the original frequency of 90MHz there's no way to get a 48MHz USB clock.
These new setting mirror those of the STM32F429DISC board.
</pre>
</div>
</content>
</entry>
</feed>
