Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Aug 14, 2024
1 parent 6b136ee commit d9b2de5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- This does not change any functionality of the macro, just the name.
- Moved defines to the top of the SDI12_boards.h file
- Renamed the "tools" directory to "extras" in compliance with Arduino library standards.
- Updated copyright and license texts
- SAMD boards now *partially* revert clock and prescaler settings when an SDI-12 instance is ended.
- Prescalers are reset to factory settings, the clock divisor is not reset

### Added

- Added CRC checking
- Added support for SAMD51 processors using dedicated timers
- Added parity checking on character reception
- This can be disabled by defining the macro `SDI12_IGNORE_PARITY`
Expand Down
2 changes: 1 addition & 1 deletion src/SDI12.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ void ISR_MEM_ACCESS SDI12::handleInterrupt() {

// 7.2 - Creates a blank slate of bits for an incoming character
void ISR_MEM_ACCESS SDI12::startChar() {
rxState = 0; // got a start bit
rxState = 0x00; // 0b00000000, got a start bit
rxMask = 0x01; // 0b00000001, bit mask, lsb first
rxValue = 0x00; // 0b00000000, RX character to be, a blank slate
} // startChar
Expand Down

0 comments on commit d9b2de5

Please sign in to comment.