nuttx/boards/nucleo-f334r8
Alin Jerpelea a1c991d921 Merged in alinjerpelea/nuttx (pull request #963)
Move boards to boards folder

* boards: rename configs folder to boards

    This is the proposed layout after the change:

    boards: - folder containing board folders
            <board>: - name of each board
                    drivers: - extra drivers specific for platform
                    include: - header files for the boars
                    scripts: - extra scripts specific for platform
                        src: - board specific code
                      tools: - extra tools specific for platform
                    <config>: - board specific configuration(s)

    Note:
    <xxx> names are dependent on platform

    This is a logical change to aim to the arch layout but this is a
    huge change it should be done in several steps to lower the risk.

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* Kconfig: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* Makefile: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* Makefile.*: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* Make.defs: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* .sh: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* .mk: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* .c & .h: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* .bat: replace configs with boards

    The change is needed after the path change

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

Approved-by: Gregory Nutt <gnutt@nuttx.org>
2019-08-05 12:04:14 +00:00
..
adc Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
highpri Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
include Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
nsh Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
scripts Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
spwm1 Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
spwm2 Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
src Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
Kconfig Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00
README.txt Merged in alinjerpelea/nuttx (pull request #963) 2019-08-05 12:04:14 +00:00

Nucleo-64 Boards
================

The Nucleo-F334R8 is a member of the Nucleo-64 board family.  The Nucleo-64
is a standard board for use with several STM32 parts in the LQFP64 package.
Variants include

  Order code    Targeted STM32
  ------------- --------------
  NUCLEO-F030R8 STM32F030R8T6
  NUCLEO-F070RB STM32F070RBT6
  NUCLEO-F072RB STM32F072RBT6
  NUCLEO-F091RC STM32F091RCT6
  NUCLEO-F103RB STM32F103RBT6
  NUCLEO-F302R8 STM32F302R8T6
  NUCLEO-F303RE STM32F303RET6
  NUCLEO-F334R8 STM32F334R8T6
  NUCLEO-F401RE STM32F401RET6
  NUCLEO-F410RB STM32F410RBT6
  NUCLEO-F411RE STM32F411RET6
  NUCLEO-F446RE STM32F446RET6
  NUCLEO-L053R8 STM32L053R8T6
  NUCLEO-L073RZ STM32L073RZT6
  NUCLEO-L152RE STM32L152RET6
  NUCLEO-L452RE STM32L452RET6
  NUCLEO-L476RG STM32L476RGT6

Configurations
==============

  nsh:
  ----

    Configures the NuttShell (nsh) located at apps/examples/nsh.

  adc:
  ----

    Configures the ADC example located at apps/examples/adc.

  highpri:
  --------

    Configures the high priority interrupts example (ADC + PWM)

  spwm1 and spwm2:
  ----------------

    Configures the sinusoidal PWM (SPWM) example which presents a simple use case
    of the STM32 PWM lower-half driver without generic upper-half PWM logic.

    There are two variants of this example, where functionality is achieved with
    different periperals:

      - spwm1 uses HRTIM to generate PWM and change waveform samples
      - spwm2 uses TIM1 to generate PWM and TIM6 to change waveform samples

    At the moment, the waveform parameters are hardcoded, but it should be easy to
    modify this example and make it more functional.