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: arduino/ArduinoCore-avr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: lshw/ArduinoCore-avr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 9, 2022

  1. add Serial rx callback function

    example:
    
    //return false drop char,
    bool rxcap(char ch) {
      if (ch == '1') { //if get char '1'
        Serial.println("callback!");
        Serial.setRxCallBack(0); //disable CallBack
        return false; //del char '1' from rx buff
      }
      return true;
    }
    
    void setup() {
      Serial.begin(115200);
      Serial.setRxCallBack(rxcap);
    }
    
    void loop() {
    while(Serial.available())
      Serial.write(Serial.read());
    }
    
    ~
    lshw committed Mar 9, 2022
    Configuration menu
    Copy the full SHA
    e2a9e7f View commit details
    Browse the repository at this point in the history
Loading