Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zephyrproject-rtos/arduino-core-zephyr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.2
Choose a base ref
...
head repository: zephyrproject-rtos/arduino-core-zephyr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.3
Choose a head ref
  • 11 commits
  • 26 files changed
  • 4 contributors

Commits on Dec 11, 2022

  1. create west.yml

    This file can be used to directly pull and use this module. Main use
    case at the moment is to easily pull this module in a docker container
    and then run a simple sample build test to see if code compiles without
    errors.
    
    Signed-off-by: Dhruva Gole <[email protected]>
    DhruvaG2000 committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    6fabfbd View commit details
    Browse the repository at this point in the history
  2. create build.yml for CI CD

    This creates a CI CD build workflow to check if project builds
    successfully for a basic fade led and i2c samples
    
    Signed-off-by: Dhruva Gole <[email protected]>
    DhruvaG2000 committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    1b7727c View commit details
    Browse the repository at this point in the history
  3. variant: Rename LED_BUILTIN_FIND_DIGITAL_PIN for generally purpuse

    Signed-off-by: TOKITA Hiroshi <[email protected]>
    soburi authored and DhruvaG2000 committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    e08deb1 View commit details
    Browse the repository at this point in the history
  4. zephyrCommon: GPIO cells use to PWM and ADC pin assigning

    Change to use GPIO cells to assign PWM and ADC pins.
    This change makes it easier to manage because unifying
    the notation with `digital-pin-gpios`.
    Deleting `pwm-pins` and `io-channel-pins` nodes, and create
    `pwm-pin-gpios` and `adc-pins-gpios`.
    
    Signed-off-by: TOKITA Hiroshi <[email protected]>
    soburi authored and DhruvaG2000 committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    453d857 View commit details
    Browse the repository at this point in the history
  5. variants: Apply GPIO cell based PWM and ADC node configuration

    Signed-off-by: TOKITA Hiroshi <[email protected]>
    soburi authored and DhruvaG2000 committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    b061645 View commit details
    Browse the repository at this point in the history
  6. documentation: Update document about pin mapping nodes

    Update the document about `digital-pin-gpios` and
    add description for `pwm-pin-gpios` and `adc-pin-gpios`
    
    Signed-off-by: TOKITA Hiroshi <[email protected]>
    soburi authored and DhruvaG2000 committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    0bae8e1 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. variants: Add cc3220sf

    Add support for the TI CC3220SF LaunchXL platform in arduino core API
    for zephyr.
    
    Signed-off-by: Dhruva Gole <[email protected]>
    DhruvaG2000 committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    e43e671 View commit details
    Browse the repository at this point in the history
  2. README: Update heading and also maintainers

    * New maintainers - Dhruva and Tokita, Hiroshi have been added.
    * The title has been updated to specify what the project does at the top
      of the README.
    
    Acked-by: Mike Szczys <[email protected]>
    Acked-by: Jonathan Beri <[email protected]>
    Signed-off-by: Dhruva Gole <[email protected]>
    DhruvaG2000 committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    39f7c35 View commit details
    Browse the repository at this point in the history
  3. variants: Add support for nRF9160

    Add support for Nordic nRF9160 DK (Demo Kit) board. More information at https://www.nordicsemi.com/Products/Development-hardware/nRF9160-DK/GetStarte
    
    Signed-off-by: Dejan Deletic <[email protected]>
    ddeletic authored and DhruvaG2000 committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    6772aff View commit details
    Browse the repository at this point in the history
  4. samples: Fix paths to overlay files given to cmake on Windows

    When building samples on Windows, path to overlay file must be given in the form that cmake can understand. Which means paths must not have single backslash (\) character in them. However $ENV(ZEPHYR_BASE) contains exactly that (e.g. C:\Users\...). We fix this by passing  $ENV(ZEPHYR_BASE) through cmake_path().
    
    Signed-off-by: Dejan Deletic <[email protected]>
    ddeletic authored and DhruvaG2000 committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    b252469 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. zephyrSerial: Fix misdetection arduino_serial1

    DT_NODE_EXISTS value is true even if the status is disabled,
    so it caused misdetection.
    Use DT_NODE_HAS_STATUS to detect the status of
    the arduino_serial1 node is ok.
    
    Signed-off-by: TOKITA Hiroshi <[email protected]>
    soburi authored and DhruvaG2000 committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    aa2150b View commit details
    Browse the repository at this point in the history
Loading