You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ju...@apache.org on 2017/08/01 14:58:37 UTC

[mynewt-core] branch master updated (14c9704 -> cdbfa5e)

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

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


    from 14c9704  Merge pull request #453 from francois-berder/pic32-reset
     add b117a25  hw: mcu: pic32mx470f512h: Implement hal_gpio
     add 369ba73  hw: bsp: pic32mx470_6lp_clicker: Define LED's
     add 5f151a4  hw: mcu: pic32mx470f512h: Implement Peripheral Pin Select
     add 8a4ab2f  hw: mcu: pic32mx470f512h: Configure pins in hal_uart_config
     add 8479c12  hw: bsp: pic32mx470_6lp_clicker: Define UART pins for Mikrobus and serial pads
     add 2b79e01  hw: bsp: pic32mx470_6lp_clicker: Fix ifdef for UART includes
     add fa02b27  hw: mcu: pic32mx470f512h: Reduce code duplication in hal_uart
     add 65b3d4c  hw: mcu: pic32mx470f512h: Reduce number of UART TX interrupts
     add cb9556b  hw: mcu: pic32mx470f512h: Implement hal_spi (master only)
     add cc794cf  hw: bsp: pic32mx470_6lp_clicker: Define SPI bus
     add 8645878  hw: mcu: pic32mx470f512h: Implement hal_i2c
     add 1410aa6  hw: bsp: pic32mx470_6lp_clicker: Add I2C peripheral support
     add cd6b23c  hw: mcu: pic32mx470f512h: Implement hal_timer
     add 3da7e00  hw: bsp: pic32mx470_6lp_clicker: Initialise timers
     new cdbfa5e  Merge pull request #473 from francois-berder/clicker-i2c

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:
 hw/bsp/pic32mx470_6lp_clicker/include/bsp/bsp.h    |  13 +-
 hw/bsp/pic32mx470_6lp_clicker/src/hal_bsp.c        | 102 ++++++++++-
 hw/bsp/pic32mx470_6lp_clicker/syscfg.yml           |  32 +++-
 hw/mcu/microchip/pic32mx470f512h/include/mcu/mcu.h |  15 ++
 .../pic32mx470f512h/include/mcu/mips_hal.h         |  20 +++
 hw/mcu/microchip/pic32mx470f512h/include/mcu/pps.h | 118 ++++++++++++
 .../src/hal_gpio.c                                 | 182 ++++++-------------
 .../src/hal_i2c.c                                  |  10 +-
 .../src/hal_spi.c                                  | 173 +++---------------
 .../src/hal_timer.c                                | 119 ++-----------
 hw/mcu/microchip/pic32mx470f512h/src/hal_uart.c    | 197 ++++++++-------------
 .../src/pps.c                                      |  86 ++++-----
 12 files changed, 506 insertions(+), 561 deletions(-)
 create mode 100644 hw/mcu/microchip/pic32mx470f512h/include/mcu/pps.h
 copy hw/mcu/microchip/{pic32mz2048efg100 => pic32mx470f512h}/src/hal_gpio.c (68%)
 copy hw/mcu/microchip/{pic32mz2048efg100 => pic32mx470f512h}/src/hal_i2c.c (96%)
 copy hw/mcu/microchip/{pic32mz2048efg100 => pic32mx470f512h}/src/hal_spi.c (69%)
 copy hw/mcu/microchip/{pic32mz2048efg100 => pic32mx470f512h}/src/hal_timer.c (77%)
 copy hw/mcu/microchip/{pic32mz2048efg100 => pic32mx470f512h}/src/pps.c (78%)

-- 
To stop receiving notification emails like this one, please contact
['"commits@mynewt.apache.org" <co...@mynewt.apache.org>'].

[mynewt-core] 01/01: Merge pull request #473 from francois-berder/clicker-i2c

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

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

commit cdbfa5ea8e235e9365d3ce8391431c15471b21d4
Merge: 14c9704 3da7e00
Author: IMGJulian <IM...@users.noreply.github.com>
AuthorDate: Tue Aug 1 15:58:35 2017 +0100

    Merge pull request #473 from francois-berder/clicker-i2c
    
    Clicker: Implement GPIO, SPI, I2C and Timer HAL

 hw/bsp/pic32mx470_6lp_clicker/include/bsp/bsp.h    |  13 +-
 hw/bsp/pic32mx470_6lp_clicker/src/hal_bsp.c        | 102 ++++-
 hw/bsp/pic32mx470_6lp_clicker/syscfg.yml           |  32 +-
 hw/mcu/microchip/pic32mx470f512h/include/mcu/mcu.h |  15 +
 .../pic32mx470f512h/include/mcu/mips_hal.h         |  20 +
 hw/mcu/microchip/pic32mx470f512h/include/mcu/pps.h | 118 +++++
 hw/mcu/microchip/pic32mx470f512h/src/hal_gpio.c    | 414 +++++++++++++++++
 hw/mcu/microchip/pic32mx470f512h/src/hal_i2c.c     | 276 ++++++++++++
 hw/mcu/microchip/pic32mx470f512h/src/hal_spi.c     | 492 +++++++++++++++++++++
 hw/mcu/microchip/pic32mx470f512h/src/hal_timer.c   | 464 +++++++++++++++++++
 hw/mcu/microchip/pic32mx470f512h/src/hal_uart.c    | 197 ++++-----
 hw/mcu/microchip/pic32mx470f512h/src/pps.c         | 187 ++++++++
 12 files changed, 2205 insertions(+), 125 deletions(-)


-- 
To stop receiving notification emails like this one, please contact
"commits@mynewt.apache.org" <co...@mynewt.apache.org>.