forked from mysensors/MySensors
-
Notifications
You must be signed in to change notification settings - Fork 6
Merge from mysensors #2
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
Open
Oitzu
wants to merge
1,415
commits into
Oitzu:master
Choose a base branch
from
mysensors:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
* Data is not validated on Linux systems * If encryption is enabled, data is also validated even if signing is disabled.
In the Arduino IDE, boolean is an alias for bool. The Arduino IDE might deprecate boolean in the future. See arduino/Arduino#4673 for details. Command: find drivers -type f | xargs sed -i 's/boolean/bool/g'
* Added support for I2C EEPROM OTA * EEPROM OTA now uses extEEPROM as driver * Compiler warning fix * Style check fixes * Fix doxygen warnings of I2CEeprom * Use bool instead of boolean in I2CEeprom shim * Fix re-merged style problem
Even with MY_DISABLED_SERIAL defined, the linker is still adding the Serial object to the binary. That's because a) the MySensors *.cpp files are actually included into the sketch and compiled as part of it (and not compiled separately and then linked) and b) due the the default(?) behavior of the linker (https://github.com/arduino/Arduino/issues/4579).
Added possibility to tune flash commands and parameters in case off use non standard SPI flash for OTA
Personalization does not need validation if the simple password security flag is set. Fixes #914
NRF5: Fix sleep() (#917)
* Fix NRF5_ESB_readMessage, allways enable radio
* NRF5: fixes and improvements
- Compiles with arduino core for nRF52 (primo)
MY_RADIO_NRF5_ESB stays unsupported with primo!
- Split ACK negation flag into
MY_NRF5_ESB_REVERSE_ACK_TX
MY_NRF5_ESB_REVERSE_ACK_RX
- MY_RADIO_NRF5_ESB changes to act more than NRF24
- MY_RADIO_NRF5_ESB better support for powerdown/standby
- Moved initialization from MyMainNRF5 to hwInit()
* Add support for less than 1 blink per hour * Apply Arduino IDE auto-formatting (readability++) * Minor spelling/grammar fixes * Fix copyright date regression
* RF24 improvements * RF24 improvements
Fix: do not set nodeID to AUTO if invalid I_ID_RESPONSE received
Save 2 bytes of RAM: remove transportSM variable (uplinkQualityRSSI) if unused
Bump pre-release version to 7
This fixes #1330
* Add log parser
Not sure why the git mv command didn't work
* Update MyMessage.cpp See issue #1349 * Misspelled define
…ty (#1358) * Add MY_RS485_DE_INVERSE define to invert the device enable pin polarity
Use snprintf instead of sprintf to avoid a potential buffer overflow.
_fileName and _values have to be re-set to NULL, otherwise a double-free might occur.
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.
No description provided.