Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In support of issue #98 (SoftwareSerial not working) #205

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Oct 17, 2017

  1. * Arduino.h : fix errors in #defines for digitalPinToPort, portOutput…

    …Register, portModeRegister
    
    # WInterrupts
    * change attachInterrupt define to return the interrupt mask
    * callbacksInt, channelMap now uses an initialiser list instead of memset
    * GPIOTE_IRQn priority dropped from 1 to 3 (same as Uart priority)
    * LOW and HIGH modes added to attachInterrupt for compatibility, which are the same as FALLING and RISING respectively as GPIOTE does not support HIGH and LOW modes
    * To free up clock cycles between GPIOTE interrupts GPIOTE_IRQHandler now searches for the first GPIOTE event and breaks to execute, rather than staying in the interrupt and executing each GPIOTE callback that has triggered an interrupt.
    micooke committed Oct 17, 2017
    Configuration menu
    Copy the full SHA
    1f7c6c4 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. * Add SoftwareSerial library from @arduino-org arduino-core-nrf52 rel…

    …ease 1.0.1
    
    * merged SoftwareSerial.cpp into SoftwareSerial.h to allow ```_SS_MAX_RX_BUFF``` to be user-defined
    * added ```_SS_TX_ONLY``` user define to allow this to be used as a transmit only library (no interrupts used)
    * removed workarounds for legacy versions of Arduino that arent supported by this core
    micooke committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    56a17f1 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2018

  1. * Bugfixes and corrections recommended by @carlosperate

    * Added separate LICENSE file
    * Updated Copyright information
    * Bugfix: replaced #ifdef / #ifndef _SS_TX_ONLY with #if _SS_TX_ONLY == 1/0
    * Updated TransmitOnly.ino to demonstrate the use of _SS_MAX_RX_BUFF
    micooke committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    f4ffcfa View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2018

  1. Update bytes saved number

    micooke committed Jan 9, 2018
    Configuration menu
    Copy the full SHA
    cee3d59 View commit details
    Browse the repository at this point in the history