You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/12/23 14:20:03 UTC

[incubator-nuttx] branch master updated (570aa3c -> 5241688)

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from 570aa3c  CI: Allow builds to pass even if final artifact upload fails
     add 1502693  boards/arm/imxrt/teensy-4.x: Added support for LCD display with ST7789
     add b11bfef  drivers/lcd: Added support for ST7789 controller based on ST7735
     add 6439d1b  boards/arm/imxrt/teensy-4.x: Added lcd-4.1 config to README.txt
     add 5241688  fix nx style warnings and errors

No new revisions were added by this update.

Summary of changes:
 arch/arm/src/imxrt/imxrt_lpspi.c                   |   4 +-
 boards/arm/imxrt/teensy-4.x/README.txt             |  13 +-
 .../configs/{sd-4.1 => lcd-4.1}/defconfig          |  29 +-
 boards/arm/imxrt/teensy-4.x/src/Makefile           |   4 +
 boards/arm/imxrt/teensy-4.x/src/imxrt_spi.c        |  22 +-
 .../teensy-4.x/src/imxrt_st7789.c}                 |  38 +--
 boards/arm/imxrt/teensy-4.x/src/teensy-4.h         |   8 +
 drivers/lcd/Kconfig                                |  19 ++
 drivers/lcd/Make.defs                              |   4 +
 drivers/lcd/{st7735.c => st7789.c}                 | 304 ++++++++++-----------
 drivers/lcd/{st7735.h => st7789.h}                 |  48 ++--
 include/nuttx/lcd/{st7735.h => st7789.h}           |  14 +-
 12 files changed, 279 insertions(+), 228 deletions(-)
 copy boards/arm/imxrt/teensy-4.x/configs/{sd-4.1 => lcd-4.1}/defconfig (76%)
 copy boards/arm/{stm32/olimex-stm32-p407/src/stm32_st7735.c => imxrt/teensy-4.x/src/imxrt_st7789.c} (85%)
 copy drivers/lcd/{st7735.c => st7789.c} (67%)
 copy drivers/lcd/{st7735.h => st7789.h} (53%)
 copy include/nuttx/lcd/{st7735.h => st7789.h} (89%)