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 02ff200  [Feature]: Main Task OS Sanity Check (#1838)
     new 31f54a1  kernel/os: Fn to convert OS_ codes to SYS_E codes
     new b9e9544  encoding/tinycbor: encode indefinite text strings
     new 385e381  sys/console: console_vprintf
     new 15d9910  util/streamer: generic data streaming interface
     new e178c3d  sys/shell: Use the util/streamer interface
     new f6f145b  hw/battery: Fix shell command definitions
     new 4d37e68  sys/shell: shell-newtmgr bridge
     new 65c4723  sys/shell: Change the OS cmds to extended
     new 84faab7  sys/stats: Change the stats shell cmds to extended
     new e4c46a7  flash_test: Change shell cmds to extended

The 10 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/tinycbor/include/tinycbor/cbor.h          |   1 +
 encoding/tinycbor/src/cborencoder.c                |  14 ++
 hw/battery/src/battery_shell.c                     |  12 +-
 kernel/os/include/os/os_error.h                    |  10 +
 kernel/os/{include/os/mynewt.h => src/os_error.c}  |  30 +--
 mgmt/mgmt/include/mgmt/mgmt.h                      |   1 +
 sys/console/full/include/console/console.h         |   1 +
 sys/console/full/src/console_fmt.c                 |  54 +++--
 sys/console/minimal/include/console/console.h      |   6 +
 sys/console/stub/include/console/console.h         |   6 +
 sys/shell/include/shell/shell.h                    |  66 +++++-
 sys/shell/pkg.yml                                  |   4 +
 sys/shell/src/shell.c                              | 226 +++++++++++++--------
 sys/shell/src/shell_bridge.c                       | 109 ++++++++++
 sys/shell/src/shell_bridge_streamer.c              |  81 ++++++++
 sys/shell/src/shell_os.c                           |  95 ++++-----
 sys/shell/src/shell_priv.h                         |  18 ++
 sys/shell/src/shell_prompt.c                       |   2 +-
 sys/shell/syscfg.yml                               |  16 ++
 sys/stats/full/src/stats_shell.c                   |  44 ++--
 test/flash_test/src/flash_test.c                   |  94 +++++----
 util/streamer/include/streamer/streamer.h          | 108 ++++++++++
 util/{taskpool => streamer}/pkg.yml                |   8 +-
 .../hal_flash.c => util/streamer/src/streamer.c    |  32 +--
 .../streamer/src/streamer_console.c                |  37 ++--
 util/streamer/src/streamer_mbuf.c                  |  99 +++++++++
 {fs/fatfs => util/streamer}/syscfg.yml             |  11 +-
 27 files changed, 888 insertions(+), 297 deletions(-)
 copy kernel/os/{include/os/mynewt.h => src/os_error.c} (61%)
 create mode 100644 sys/shell/src/shell_bridge.c
 create mode 100644 sys/shell/src/shell_bridge_streamer.c
 create mode 100644 util/streamer/include/streamer/streamer.h
 copy util/{taskpool => streamer}/pkg.yml (90%)
 copy hw/mcu/stm/stm32f0xx/src/hal_flash.c => util/streamer/src/streamer.c (63%)
 copy sys/console/full/src/ticks.c => util/streamer/src/streamer_console.c (57%)
 create mode 100644 util/streamer/src/streamer_mbuf.c
 copy {fs/fatfs => util/streamer}/syscfg.yml (83%)

Reply via email to