Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
Bill Greiman 1f87c86fed Add new Partiicle IoT driver 6 lat temu
examples Add new Partiicle IoT driver 6 lat temu
extras Add new Partiicle IoT driver 6 lat temu
src Add new Partiicle IoT driver 6 lat temu
.gitattributes :confetti_ball: Added .gitattributes & .gitignore files 10 lat temu
.gitignore :confetti_ball: Added .gitattributes & .gitignore files 10 lat temu
README.md Add new Partiicle IoT driver 6 lat temu
library.properties Add new Partiicle IoT driver 6 lat temu

README.md

Warning: This beta is for testing with Particle IoT mesh devices.

Rename this folder SdFat and place it in the standard place for libraries.

I tested with a particle CLI project with a SdFat in a lib

 \Users\bill\Documents\Particle\projects\SdFatMod>ls *
README.md  argon_firmware_1545324931631.bin  project.properties

lib:
SdFat

src:
SdFatMod.ino

Changess Version 1.0.10:

Added custom Particle driver to use DMA and allow use of SPI1.

To use SPI1 declare SdFat/SdFatEX class like this:

SdFat sd1(&SPI1);
// or
SdFatEX sd1(&SPI1);

Changed STM32 use of SPI ports. See STM32Test example.

To use second SPI port:

// Use second SPI port
SPIClass SPI_2(2);
SdFat sd2(&SPI_2);

Changes Version 1.0.9:

This version of SdFat has been modified to use standard POSIX/Linux definitions of open flags from fcntl.h.

Open flags are access modes, O_RDONLY, O_RDWR, O_WRONLY, and modifiers O_APPEND, O_CREAT, O_EXCL, O_SYNC, O_TRUNC.

The mods required changing the type for open flags from uint8_t to int so bugs are likely if any uint8_t local variables were missed.