You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/01/04 13:56:04 UTC

[incubator-nuttx] branch pr35 updated (ebce5fb -> 4abb644)

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

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


    from ebce5fb  Squashed commit of the following:
     add 4d7a3b7  Restore netlink_crypto branch broken by a bad merge.  Includes these changes:
     add 176eb02  Add files missed in last commit
     add 5b28367  net: tcp: Fix compile error in tcp.h
     add 13d8cb1  Squashed commit of the following:
     add 933a466  Minor fix (#23)
     add a3704e7  Fix wait loop and void cast (#24)
     add fc3bd5b  Author: Gregory Nutt <gn...@nuttx.org>
     add ad806a5  Squashed commit of the following:
     add 4feda07  arch/arm/src/stm32/stm32_fmc.c: fix compilation error (#27)
     add 5e243f5  net/icmp/icmp_netpoll.c: Fix warning: implicit declaration of nxsem_post().  This appeared after include of nuttx/kmalloc.h was removed recently.
     add ff4ebe2  net/icmp/icmp_netpoll.c: Fix return of uninitialized 'ret' when no error occurs.  That is, on what should be a successful return from this function, an uninitialized value was returned, which may indicate an undeserved error.
     add b278aba  Author: Gregory Nutt <gn...@nuttx.org>
     add 54c1b49  drivers/modem/altair/altmdm_sys.c:  Fix modem/altair semaphore related compiler warning
     add 3125960  Documentation/NuttXCCodingStandard.html:  Remove requirement to decorate ignored returned values with (void). (#31)
     add a1e27bf  drivers/sensors/lsm6dsl.c: fix various compiler warnings
     add d644567  sx127x: fix some coding standard problems (#36)
     add 9e091d2  Improvements for NRF52 (#37)
     new 4abb644  Merge branch 'master' of github.com:apache/incubator-nuttx into netlink_crypto

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 arch/arm/src/nrf52/hardware/nrf52_gpio.h           |   2 +
 arch/arm/src/nrf52/hardware/nrf52_gpiote.h         |  99 ++++
 arch/arm/src/nrf52/hardware/nrf52_saadc.h          | 221 +++++++
 arch/arm/src/nrf52/hardware/nrf52_spi.h            |  26 +-
 arch/arm/src/nrf52/hardware/nrf52_twi.h            |  22 +-
 arch/arm/src/nrf52/hardware/nrf52_uarte.h          |  22 +-
 arch/arm/src/nrf52/nrf52_gpio.c                    |  30 +
 arch/arm/src/nrf52/nrf52_gpio.h                    |  10 +
 arch/arm/src/nrf52/nrf52_i2c.c                     | 644 +++++++++++++++++++++
 .../pic32mz-i2c.h => arm/src/nrf52/nrf52_i2c.h}    |  32 +-
 arch/arm/src/nrf52/nrf52_lowputc.c                 |  19 +-
 arch/arm/src/nrf52/nrf52_lowputc.h                 |   6 +-
 arch/arm/src/nrf52/nrf52_serial.c                  |   4 +-
 arch/arm/src/stm32/stm32_adc.c                     |   2 +-
 arch/arm/src/stm32l4/stm32l4_otgfshost.c           |   1 -
 crypto/Makefile                                    |   4 +
 crypto/crypto_netlink.c                            | 202 +++++++
 crypto/crypto_netlink.h                            | 146 +++++
 drivers/wireless/lpwan/sx127x/sx127x.c             | 508 ++++++++++------
 include/netpacket/netlink.h                        | 237 ++++++++
 .../nuttx/crypto/crypto_netlink.h                  |  60 +-
 include/nuttx/wireless/lpwan/sx127x.h              |  73 +--
 include/sys/socket.h                               |   2 +
 net/netlink/Kconfig                                |  12 +
 net/netlink/Make.defs                              |   4 +
 net/netlink/netlink.h                              |  31 +
 net/netlink/netlink_crypto.c                       | 193 ++++++
 net/netlink/netlink_sockif.c                       |  25 +
 28 files changed, 2331 insertions(+), 306 deletions(-)
 create mode 100644 arch/arm/src/nrf52/hardware/nrf52_gpiote.h
 create mode 100644 arch/arm/src/nrf52/hardware/nrf52_saadc.h
 create mode 100644 arch/arm/src/nrf52/nrf52_i2c.c
 copy arch/{mips/src/pic32mz/pic32mz-i2c.h => arm/src/nrf52/nrf52_i2c.h} (80%)
 create mode 100644 crypto/crypto_netlink.c
 create mode 100644 crypto/crypto_netlink.h
 copy arch/arm/src/xmc4/xmc4_i2c.h => include/nuttx/crypto/crypto_netlink.h (62%)
 create mode 100644 net/netlink/netlink_crypto.c


[incubator-nuttx] 01/01: Merge branch 'master' of github.com:apache/incubator-nuttx into netlink_crypto

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a commit to branch pr35
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 4abb644003856fd547be7d370b93f8f92fbb8b7d
Merge: a1e27bf 9e091d2
Author: Gregory Nutt <gn...@nuttx.org>
AuthorDate: Sat Jan 4 07:55:37 2020 -0600

    Merge branch 'master' of github.com:apache/incubator-nuttx into netlink_crypto

 TODO                                               |  80 ++-
 arch/arm/src/lc823450/lc823450_usbdev.c            |  10 +-
 arch/arm/src/nrf52/hardware/nrf52_gpio.h           |   2 +
 arch/arm/src/nrf52/hardware/nrf52_gpiote.h         |  99 ++++
 arch/arm/src/nrf52/hardware/nrf52_saadc.h          | 221 +++++++
 arch/arm/src/nrf52/hardware/nrf52_spi.h            |  26 +-
 arch/arm/src/nrf52/hardware/nrf52_twi.h            |  22 +-
 arch/arm/src/nrf52/hardware/nrf52_uarte.h          |  22 +-
 arch/arm/src/nrf52/nrf52_gpio.c                    |  30 +
 arch/arm/src/nrf52/nrf52_gpio.h                    |  10 +
 arch/arm/src/nrf52/nrf52_i2c.c                     | 644 +++++++++++++++++++++
 .../arm/src/nrf52/{nrf52_lowputc.h => nrf52_i2c.h} | 107 ++--
 arch/arm/src/nrf52/nrf52_lowputc.c                 |  19 +-
 arch/arm/src/nrf52/nrf52_lowputc.h                 |   6 +-
 arch/arm/src/nrf52/nrf52_serial.c                  |   4 +-
 arch/arm/src/sama5/sam_tsd.c                       |   7 +-
 arch/arm/src/stm32/stm32_adc.c                     |  61 +-
 arch/arm/src/stm32l4/stm32l4_otgfshost.c           |   5 +
 drivers/input/ads7843e.c                           |  21 +-
 drivers/usbhost/usbhost_hidmouse.c                 |  27 +-
 drivers/wireless/lpwan/sx127x/sx127x.c             | 508 ++++++++++------
 include/nuttx/wireless/lpwan/sx127x.h              |  73 +--
 22 files changed, 1601 insertions(+), 403 deletions(-)