File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11name =Blues Wireless Notecard
2- version =1.6.4
2+ version =1.6.5
33author =Blues
44maintainer =Blues <
[email protected] >
55sentence =An easy to use Notecard Library for Arduino.
Original file line number Diff line number Diff line change 44// Define the version of the `note-arduino` library
55#define NOTE_ARDUINO_VERSION_MAJOR 1
66#define NOTE_ARDUINO_VERSION_MINOR 6
7- #define NOTE_ARDUINO_VERSION_PATCH 4
7+ #define NOTE_ARDUINO_VERSION_PATCH 5
88
99#define NOTE_ARDUINO_VERSION NOTE_C_STRINGIZE(NOTE_ARDUINO_VERSION_MAJOR) "." NOTE_C_STRINGIZE(NOTE_ARDUINO_VERSION_MINOR) "." NOTE_C_STRINGIZE(NOTE_ARDUINO_VERSION_PATCH)
1010
1919#endif // __GNUC__ || __clang__
2020
2121// Switches for enabling/disabling features
22- #if defined(ARDUINO_ARCH_AVR ) || defined(ARDUINO_ARCH_MEGAAVR ) || defined(ARDUINO_ARCH_STM32 ) || defined(ARDUINO_ARCH_NRF52 ) || defined(ARDUINO_ARCH_RP2040 )
23- #define NOTE_ARDUINO_SOFTWARE_SERIAL_SUPPORT
22+ #if defined(ARDUINO_ARCH_AVR ) || defined(ARDUINO_ARCH_MEGAAVR ) || defined(ARDUINO_ARCH_STM32 ) || defined(ARDUINO_ARCH_NRF52 ) || ( defined(ARDUINO_ARCH_RP2040 ) && !defined( ARDUINO_ARCH_MBED ) )
23+ #define NOTE_ARDUINO_SOFTWARE_SERIAL_SUPPORT
2424#endif
2525
2626#endif // NOTE_DEFINES_H
You can’t perform that action at this time.
0 commit comments