File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
name =Blues Wireless Notecard
2
- version =1.6.4
2
+ version =1.6.5
3
3
author =Blues
4
4
maintainer =Blues <
[email protected] >
5
5
sentence =An easy to use Notecard Library for Arduino.
Original file line number Diff line number Diff line change 4
4
// Define the version of the `note-arduino` library
5
5
#define NOTE_ARDUINO_VERSION_MAJOR 1
6
6
#define NOTE_ARDUINO_VERSION_MINOR 6
7
- #define NOTE_ARDUINO_VERSION_PATCH 4
7
+ #define NOTE_ARDUINO_VERSION_PATCH 5
8
8
9
9
#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)
10
10
19
19
#endif // __GNUC__ || __clang__
20
20
21
21
// 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
24
24
#endif
25
25
26
26
#endif // NOTE_DEFINES_H
You can’t perform that action at this time.
0 commit comments