-
Notifications
You must be signed in to change notification settings - Fork 25
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
Merge Upstream changes (2.2.2) #23
base: master
Are you sure you want to change the base?
Conversation
/** SdFat version as string. */ | ||
#define SD_FAT_VERSION_STR "2.2.0" | ||
#define SD_FAT_VERSION_STR "2.2.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also be updating this in our fork, or just library.properties - leaving untouched like before
@ladyada a little bit more than first thought in SDfat, I've gone through it all in the PR and there's a new option for SAMD51 which may be interesting to play with (USE_SPI_ARRAY_TRANSFER = 3). |
This brings our fork inline with the latest upstream release (v2.2.2) which is mostly just linting and doxygen with some minor additional changes, including new values for USE_SPI_ARRAY_TRANSFER potentially giving higher speeds
Also of note:
examples/TeensyDmaAdcLogger/TeensyDmaAdcLogger.ino
Teensy ADC example has been updated to use adc library instead of direct port manipulationexamples/debug/CardBusyTest/CardBusyTest.ino
addedexamples/debug/ExFatDbgDmp/ExFatDbgDmp.ino
addedexamples/debug/TestGetName/TestGetName.ino
addedexamples/debug/TestMkdir/TestMkdir.ino
addedexamples/debug/TestRmdir/TestRmdir.ino
addedexamples/debug/TimestampTest/TimestampTest.ino
addedextras/AvrPrintStimmer.cpp
added - AVR print + println by David A. Mellis + Paul Stoffregensrc/RingBuf.h
changed internally - meant to be functionally the same with an additional negative return value for readIn errors, plus new methods for read/write(Type)src/SdCard/SdCardInfo.h
renamed + new fields to SD Status (type sds_t)src/SdCard/SdCardInterface.h
removed sectorCount() and added bool readSDS(sds_t* sds) to fetch SD status new waysrc/SdCard/SdSpiCard.cpp
changes use + checking of Timeoutsrc/SdCard/SdSpiCard.h
adds SPI_ASSERT_NOT_ACTIVE, initSharedSpiCard()src/SdCard/SdioTeensy.cpp
adds cardACMD13()src/SdFat.h
SD_FAT_VERSION set to 20202 (from SD_FAT_VERSION 20200)src/iostream/StdioStream.cpp
removes StdioStream::fmtSpacesrc/SpiDriver/SdSpiLibDriver.h
new support for USE_SPI_ARRAY_TRANSFER > 1src/common/PrintBasic.cpp
removedsrc/common/PrintBasic.h
removed