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/11/05 14:38:34 UTC

[incubator-nuttx] branch master updated (e73e03a -> 9c19db6)

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 e73e03a  Add fuction to set timer frequency.
     add 2ed6e13  driver/rc: support IR remote control
     add 8562e17  rc/dummy: add dummy driver to test driver skeleton
     add 9c19db6  rc/dummy: enable dummy driver and add rc defconfig

No new revisions were added by this update.

Summary of changes:
 Kconfig                                            |   38 +
 .../sim/sim/configs/{nshcromfs => rc}/defconfig    |   12 +-
 boards/sim/sim/sim/src/sim_appinit.c               |    6 +
 drivers/Kconfig                                    |    1 +
 drivers/Makefile                                   |    1 +
 drivers/rc/Kconfig                                 |   26 +
 drivers/{rptun => rc}/Make.defs                    |   21 +-
 drivers/rc/dummy.c                                 |  234 ++++
 drivers/rc/lirc_dev.c                              | 1168 ++++++++++++++++++++
 include/debug.h                                    |   18 +
 include/nuttx/fs/ioctl.h                           |    6 +
 include/nuttx/lirc.h                               |  264 +++++
 .../litex_lowputc.h => include/nuttx/rc/dummy.h    |   24 +-
 include/nuttx/rc/lirc_dev.h                        |  271 +++++
 14 files changed, 2059 insertions(+), 31 deletions(-)
 copy boards/sim/sim/sim/configs/{nshcromfs => rc}/defconfig (87%)
 create mode 100644 drivers/rc/Kconfig
 copy drivers/{rptun => rc}/Make.defs (78%)
 create mode 100644 drivers/rc/dummy.c
 create mode 100644 drivers/rc/lirc_dev.c
 create mode 100644 include/nuttx/lirc.h
 copy arch/risc-v/src/litex/litex_lowputc.h => include/nuttx/rc/dummy.h (82%)
 create mode 100644 include/nuttx/rc/lirc_dev.h