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

Commits on Oct 5, 2024

  1. Update Serial.h for 9-bit support

    Added to write function declarations for functions being added to the serial.cpp to support the 9-bit functionality of the processor. 
    
    The "bool wake" allows turning on the 9-bit, also known as the wake bit.
    vashadow authored Oct 5, 2024
    Configuration menu
    Copy the full SHA
    90e4f56 View commit details
    Browse the repository at this point in the history
  2. Update Serial.cpp to support 9-bit functionality on UART

    Add two functions and the supporting 9N1 case logic to allow for turning on 9-bit support and sending commands. The second argument, bool, allows for turning on or off the 9th bit, also known as the wake bit. 
    
    Serial1.begin(19200, SERIAL_9N1);
    Serial1.write_9bit(0x81, true);
    Serial1.write_9bit(&temp[1], false, len - 1);
    vashadow authored Oct 5, 2024
    Configuration menu
    Copy the full SHA
    39c72ad View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2024

  1. Update Serial.cpp

    I removed two unnecessary functions that I added with this pull request to turn on 9bit. There was a little code cleanup /refactoring.
    vashadow authored Oct 13, 2024
    Configuration menu
    Copy the full SHA
    627bb4c View commit details
    Browse the repository at this point in the history
  2. Update Serial.h

    I removed functions that are unnecessary for the 9-bit code to work.
    vashadow authored Oct 13, 2024
    Configuration menu
    Copy the full SHA
    e8d56d6 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Merge pull request #1 from arduino/main

    Publish 1.2.2
    vashadow authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    7235c06 View commit details
    Browse the repository at this point in the history
  2. Add files via upload

    vashadow authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    36083a3 View commit details
    Browse the repository at this point in the history
  3. Update package.json

    vashadow authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    a1cfd24 View commit details
    Browse the repository at this point in the history
Loading