Adding 9-bit support to the hardware serial UART#379
Open
vashadow wants to merge 7 commits intoarduino:mainfrom
Open
Adding 9-bit support to the hardware serial UART#379vashadow wants to merge 7 commits intoarduino:mainfrom
vashadow wants to merge 7 commits intoarduino:mainfrom
Conversation
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.
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);
Author
|
The git tests will fail until the pull request "Added 9N1 support to HardwareSerial.h #238" on the ArduinoCore-API side is approved and merged. |
I removed two unnecessary functions that I added with this pull request to turn on 9bit. There was a little code cleanup /refactoring.
I removed functions that are unnecessary for the 9-bit code to work.
Publish 1.2.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The new UNO R4 WIFI supports 9-bit operations on the hardware UART as per page 28.2.6 of the Renesas RA4M1 Groups: User Manual: Hardware.
https://forum.arduino.cc/t/9-bit-uart-is-built-in-to-the-new-ra4m1-chips/1310858
There has also been a pull request to the API HardwareSerial.h file to allow for 9N1. These changes effectively put the UART into 9-bit mode and allow transmitting from the UART TDRHL 16-bit register with and without the 9th bit (wake bit) being set.
The second argument allows for turning on or off the wake bit. TRUE = wake bit set to 1 FALSE = wake bit set to 0
Example command use:
Serial1.begin(19200, SERIAL_9N1);
Serial1.write_9bit(temp[0], true);
Serial1.write_9bit(&temp[1], false, len - 1);
UPDATE:
Removed the write_9bit commands in favor of using the native write command in byte array mode:
uint16_t d[] = {0xFF01, 0xFC8A, 0xFC00, 0xFC23};
Serial1.write((uint8_t *)d, sizeof(d));