Commit Graph

300 Commits

Author SHA1 Message Date
hobobandy ee7dd9c831 Correct formatting to pass clang check 2023-08-20 14:33:48 -04:00
hobobandy ad02f6ed84 Replace check with appropriate board constant
ARDUINO_UNOR4_WIFI is used in compiler -D option
2023-08-20 10:31:52 -04:00
hobobandy e42a176229 Add support for UNO R4 soft serial 2023-08-19 17:28:30 -04:00
dherrada 3f0911610e Update CI action versions 2023-05-12 11:23:59 -04:00
Eva Herrada 350008d895
Bump to 1.7.2 2023-01-11 15:40:58 -05:00
Phillip Burgess f71212bbc7 clang-format 2022-12-26 10:34:14 -08:00
Eva Herrada 710c724dd2
Bump to 1.7.1 2022-10-03 15:03:03 -04:00
Matt Goodrich e53be7b6df
Merge pull request #142 from caternuson/fix_dox
Update CI for doxygen
2022-09-20 12:42:24 -04:00
caternuson 830e2eee58 remove old unused 2022-09-20 09:29:05 -07:00
caternuson 237f7b26eb dox fixes for ci 2022-09-20 09:11:22 -07:00
caternuson 8f64b4dd64 fix dox 2022-09-20 08:23:10 -07:00
Matt Goodrich c4e8c592a5
Merge pull request #141 from caternuson/readme_update
Add documentation status badge to README
2022-09-20 10:54:26 -04:00
Carter Nelson 9ee7baf6c3
Merge pull request #140 from Cyber-by-the-Sea/add-warning
Add warning about library usage
2022-09-20 07:07:38 -07:00
caternuson ec2e0a2c7f add docs badge 2022-09-20 07:03:54 -07:00
devtty1er 736f958882 Add warning 2022-07-31 19:16:22 -04:00
Eva Herrada 135510e928
Bump to 1.7.0 2022-07-21 16:13:26 -04:00
Carter Nelson e062c4b05e
Merge pull request #132 from wijnanb/131_add_parse_for_antenna_stats
131 add parse for antenna stats
2022-07-18 14:34:14 -07:00
Carter Nelson 8e252802d7
Merge pull request #125 from petrkr/pk/stream-support
Added support for generic Stream class
2022-07-18 14:30:40 -07:00
Eva Herrada 922afbf1a7
Bump to 1.6.3 2022-07-11 15:30:53 -04:00
lady ada 22c229d7bf swap begin/wait for esp32 2022-07-07 21:39:22 -04:00
Eva Herrada 0412958a6a
Bump to 1.6.2/ 2022-05-25 14:56:05 -04:00
Matt Goodrich d722186e8e
Merge pull request #137 from cedricgrothues/patch-1
Fix include guard in `NMEA_data.h`
2022-05-20 08:50:37 -04:00
Eva Herrada 4683307533
Bump to 1.6.1 2022-05-10 15:31:55 -04:00
Matt Goodrich 0374d49417
Merge pull request #138 from anarkiwi/minint
c++ min() wants args of the same type (enables compilation with -fno-permissive).
2022-05-09 17:40:46 -04:00
Josh Bailey 48ca1177f4 c++ min() wants args of the same type (https://en.cppreference.com/w/cpp/algorithm/min).
This allows us to compile with -fno-permissive (gcc default).
2022-03-17 10:39:53 +13:00
Cedric Grothues d8686043fb
Fix `NMEA_data.h` include guard 2022-03-07 20:12:08 +01:00
Eva Herrada 67a6ef4d9c
Bump to 1.6.0 2022-02-10 16:16:54 -05:00
Limor "Ladyada" Fried d8da9b9757
Merge pull request #136 from brunob45/no_sw_serial
Add #define to disable SW Serial
2022-02-05 11:47:52 -05:00
Bruno Bousquet 43b28b978e
Fix formatting 2022-02-01 16:32:55 -05:00
Bruno Bousquet 290b1ed835 keep USE_SW_SERIAL define 2022-01-31 23:23:06 -05:00
Bruno Bousquet ec1882be89 add define to disable sw serial 2022-01-31 23:08:42 -05:00
Petr Kracík a1f664dd0b Make clang happy 2021-11-20 20:55:34 +01:00
Petr Kracík d34d29ab38 Added support for generic Stream class 2021-11-20 19:03:31 +01:00
Dylan Herrada f5030a2692
Bump to 1.5.4 2021-02-09 16:39:53 -05:00
lady ada 7800a6e30f tweak header description 2021-02-07 16:54:12 -05:00
lady ada 8546ac5058 reduce excess newlines. fix header 2021-02-07 15:41:52 -05:00
lady ada 9ce89f0490 add starting text, ask for version last, fix baudrate to 115200 to match tutorial 2021-02-07 15:23:12 -05:00
Bert Wijnants 156a6dcb0c #131 Even more to fix clang formatting 2021-02-05 01:02:44 +01:00
Bert Wijnants ab1e7d315a #131 More to fix clang formatting 2021-02-05 01:00:00 +01:00
Bert Wijnants 9714164079 #131 Try to fix clang formatting 2021-02-05 00:45:56 +01:00
Bert Wijnants 6abd6f3548 #131 add antenna status to parsing example 2021-02-04 22:49:50 +01:00
Bert Wijnants 87925e4afe #131 Add parse for antenna stats 2021-02-04 22:46:26 +01:00
Dylan Herrada 490a2810b6
Bump to 1.5.3 2020-11-03 15:43:01 -05:00
Matt Goodrich 737f8b7d2c
Merge pull request #129 from foodini/patch-1
Fix issue with millisecond parsing.
2020-10-27 17:15:50 -04:00
Ron Barry 1666dae26b
Fix issue with millisecond parsing.
By calling atof() on p, we're converting the entire time string  (101520.123 for 10:15:20am and 123 milliseconds) to a float, then multiplying by 1000 to get ms. This results in a value that overflows and exhibits all sorts of strange behavior as seconds and minutes turn over. It's clearly not what was intended. From the if statement wrapping the conversion, it is clear that the author intended to make the atof() conversion on the dec pointer, instead. Making this change actually does fix the parsing so that Adafruit_GPS' milliseconds property correctly matches the value in the NMEA sentence.

You guys do great work. Thanks for everything!
2020-10-18 01:41:23 -07:00
dherrada 8d7ea109f1
Bump to 1.5.2 2020-07-21 09:44:40 -04:00
lady ada ea6dca6840 get more data 2020-07-19 12:35:42 -04:00
Matt Goodrich 9419a019bc
Update library.properties 2020-06-04 15:27:08 -04:00
Limor "Ladyada" Fried 2b20565cfd
Merge pull request #121 from drak7/master
Bugfix for parseCoord
2020-06-04 15:14:30 -04:00
Matt Goodrich e5ad8934d8 Bugfix for parseCoord 2020-06-04 14:43:11 -04:00