You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2020/05/11 23:57:40 UTC

[mynewt-core] branch master updated (2eb0948 -> ca5acee)

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

ccollins pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


    from 2eb0948  Merge pull request #2280 from mlaz/nrf52_adc_fixes
     new d7ba5ff  encoding/base64: Support decode in chunks
     new cbbfccd  encoding/base64: unit tests
     new ca5acee  Merge pull request #2287 from ccollins476ad/base64

The 9618 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:
 encoding/base64/include/base64/base64.h            |  21 +++
 .../base64/selftest/src/base64_test.c              |  13 +-
 .../{encoding_test_priv.h => base64_test_priv.h}   |  16 ++-
 encoding/base64/selftest/src/encoding_test.c       |  39 ------
 .../base64/selftest/src/testcases/decode_basic.c   |  54 ++++----
 .../base64/selftest/src/testcases/decode_chunks.c  |  79 +++++++++++
 .../base64/selftest/src/testcases/decode_maxlen.c  |  27 ++--
 encoding/base64/src/base64.c                       | 151 +++++++++++++++------
 8 files changed, 262 insertions(+), 138 deletions(-)
 copy net/oic/selftest/src/test_oic.c => encoding/base64/selftest/src/base64_test.c (83%)
 copy encoding/base64/selftest/src/{encoding_test_priv.h => base64_test_priv.h} (80%)
 delete mode 100644 encoding/base64/selftest/src/encoding_test.c
 copy sys/sysinit/src/sysinit.c => encoding/base64/selftest/src/testcases/decode_basic.c (52%)
 create mode 100644 encoding/base64/selftest/src/testcases/decode_chunks.c
 copy hw/mcu/nxp/MK64F12/src/hal_system.c => encoding/base64/selftest/src/testcases/decode_maxlen.c (62%)