Skip to content

Commit

Permalink
Remove bintocsv.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
greiman committed Apr 28, 2017
1 parent 6bb055d commit e89cfd3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
Binary file not shown.
3 changes: 1 addition & 2 deletions extras/AnalogBinLoggerExtras/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ You may need to increase the time between samples if your card has higher
latency. Using a Mega Arduino can help since it has more buffering.

The bintocsv folder contains a PC program for converting binary files to
CSV files. I have included a executable for Windows. Linux and Mac users
can build from the included source files. bintocvs is a command line program.
CSV files. Build it from the included source files. bintocvs is a command line program.

bintocsv binFile csvFile

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SdFat
version=1.0.0
version=1.0.1
author=Bill Greiman <fat16lib@sbcglobal.net>
maintainer=Bill Greiman <fat16lib@sbcglobal.net>
sentence=FAT16/FAT32 file system for SD cards.
Expand Down
2 changes: 1 addition & 1 deletion src/SdFat.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "SdCard/SdioCard.h"
//------------------------------------------------------------------------------
/** SdFat version */
#define SD_FAT_VERSION "1.0.0"
#define SD_FAT_VERSION "1.0.1"
//==============================================================================
/**
* \class SdBaseFile
Expand Down
8 changes: 4 additions & 4 deletions src/SpiDriver/boards/GpioPinMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
|| defined(__AVR_ATmega16__)
#ifdef ARDUINO_1284P_AVR_DEVELOPERS
#include "AvrDevelopersGpioPinMap.h"
#elif defined(ARDUINO_1284P_BOBUINO)
#elif defined(BOBUINO_PINOUT) || defined(ARDUINO_1284P_BOBUINO)
#include "BobuinoGpioPinMap.h"
#elif defined(ARDUINO_1284P_SLEEPINGBEAUTY)
#include "SleepingBeautyGpioPinMap.h"
#elif defined(ARDUINO_1284P_STANDARD)
#elif defined(STANDARD_PINOUT) || defined(ARDUINO_1284P_STANDARD)
#include "Standard1284GpioPinMap.h"
#else // ARDUINO_1284P_SLEEPINGBEAUTY
#else // ARDUINO_1284P_AVR_DEVELOPERS
#error Undefined variant 1284, 644, 324
#endif // ARDUINO_1284P_SLEEPINGBEAUTY
#endif // ARDUINO_1284P_AVR_DEVELOPERS
#else // 1284P, 1284, 644
#error Unknown board type.
#endif // end all boards
Expand Down

0 comments on commit e89cfd3

Please sign in to comment.