Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[variant] Add Generic F7xx #8

Closed
wants to merge 36 commits into from
Closed

Commits on Mar 15, 2021

  1. [stm32variant] Change generic variant generation

    - variant.* files are renamed variant_generic.*
    Generic variant header file will be included thanks
    a single variant.h using a variable defined in boards.txt
    - Clean template to remove useless extern "C"
    - Include guards replaced by #pragma once directive
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    dc1cd6d View commit details
    Browse the repository at this point in the history
  2. Add all generated STM32F0xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    5906143 View commit details
    Browse the repository at this point in the history
  3. Add all generated STM32F1xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    fc14e72 View commit details
    Browse the repository at this point in the history
  4. Add all generated STM32F2xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    a280c38 View commit details
    Browse the repository at this point in the history
  5. Add all generated STM32F3xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    e1e6566 View commit details
    Browse the repository at this point in the history
  6. Add all generated STM32F4xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    647213f View commit details
    Browse the repository at this point in the history
  7. Add all generated STM32F7xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    182afda View commit details
    Browse the repository at this point in the history
  8. Add all generated STM32G0xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    501e27c View commit details
    Browse the repository at this point in the history
  9. Add all generated STM32G4xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    db68aa0 View commit details
    Browse the repository at this point in the history
  10. Add all generated STM32H7xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    21a97fa View commit details
    Browse the repository at this point in the history
  11. Add all generated STM32L0xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    5e7172d View commit details
    Browse the repository at this point in the history
  12. Add all generated STM32L1xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    0057b9d View commit details
    Browse the repository at this point in the history
  13. Add all generated STM32L4xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    14fde38 View commit details
    Browse the repository at this point in the history
  14. Add all generated STM32L5xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    6519f81 View commit details
    Browse the repository at this point in the history
  15. Add all generated STM32MP1xx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    8310426 View commit details
    Browse the repository at this point in the history
  16. Add all generated STM32WBxx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    b5075b3 View commit details
    Browse the repository at this point in the history
  17. Add all generated STM32WLxx generic variant files

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    d1ad3e7 View commit details
    Browse the repository at this point in the history
  18. Update variant header management

    By default the variant.h will include variant_generic.h file.
    *.build.variant_h=variant_{build.board}.h can be added in
    the boards.txt to define the dedicated header to a board.
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    69beb6d View commit details
    Browse the repository at this point in the history
  19. [variant] Add Generic L4xx

    All specific L4 variants moved to the generic variant.
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    e8d1eb1 View commit details
    Browse the repository at this point in the history
  20. [variant] Add Generic G4xx

    All specific G4 variants moved to the generic variant.
    
    Signed-off-by: Alexandre Bourdiol <alexandre.bourdiol@st.com>
    ABOSTM authored and fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    840bf92 View commit details
    Browse the repository at this point in the history
  21. [variant] Add Generic G0xx

    Nucleo G071RB and Disco G0316 moved to the generic variant.
    
    Fix stm32duino#857
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    8de4a23 View commit details
    Browse the repository at this point in the history
  22. Add Aurora One Variant

    https://www.bfykorea.com/aurora-one/
    
    Supersede stm32duino#1176
    
    Signed-off-by: JongHyeon Lee <jhlee@bfykorea.com>
    Co-authored-by: Frederic.Pillon <frederic.pillon@st.com>
    JongHyeon Lee and fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    310059d View commit details
    Browse the repository at this point in the history
  23. Add Nucleo G031K8 and generic G031Kx

    Fix stm32duino#855
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    9032ce6 View commit details
    Browse the repository at this point in the history
  24. [variant] Update Generic F0xx

    All specific F0 variants moved to the generic variant.
    
    Supersede  stm32duino#1080
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    a04e2d4 View commit details
    Browse the repository at this point in the history
  25. Add Generic F042Cx

    Supersede stm32duino#1103
    
    Signed-off-by: seeers <seeers@gmx.de>
    Co-authored-by: Frederic.Pillon <frederic.pillon@st.com>
    seeers and fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    8afa2bd View commit details
    Browse the repository at this point in the history
  26. Added NUCLEO_F070RB

    Supersede stm32duino#1167
    
    Signed-off-by: Geoffrey Hunter <gbmhunter@gmail.com>
    Co-authored-by: Frederic.Pillon <frederic.pillon@st.com>
    gbmhunter and fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    6fb3e45 View commit details
    Browse the repository at this point in the history
  27. [variant] Update Generic MP1xx

    As STM32MP1 is particular, the generic target have to be customized
    by end user based on the used device tree.
    So, currently, generic menu will not be deployed.
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    55b543e View commit details
    Browse the repository at this point in the history
  28. [variant] Add Generic F2xx

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    94a4c23 View commit details
    Browse the repository at this point in the history
  29. [variant] Add Generic L5xx and Nucleo L552ZE-Q

    Supersede stm32duino#1256
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    084721f View commit details
    Browse the repository at this point in the history
  30. [variant] Add Generic WBxx

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    256ac0c View commit details
    Browse the repository at this point in the history
  31. [variant] Add Generic L1xx

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    8739391 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2021

  1. [variant] Update Generic H7xx

    Fixes stm32duino#1276 and stm32duino#1277
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    ade0a1e View commit details
    Browse the repository at this point in the history
  2. Enable HAL MDMA by default

    Some series require to have it defined by default (H7, MP1)
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    0b6fe6c View commit details
    Browse the repository at this point in the history
  3. [CI] Update configuration to build only one generic per variant

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    c7388d4 View commit details
    Browse the repository at this point in the history
  4. [PIO]Fix variant header changes

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    8d6e014 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. [variant] Add Generic F7xx

    Signed-off-by: Alexandre Bourdiol <alexandre.bourdiol@st.com>
    ABOSTM committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    6a756e0 View commit details
    Browse the repository at this point in the history