├── .gitignore ├── LICENSE ├── README.md ├── libraries ├── SdFat │ ├── LICENSE.md │ ├── README.md │ ├── examples │ │ ├── #attic │ │ │ ├── AnalogLogger │ │ │ │ └── AnalogLogger.ino │ │ │ ├── BaseExtCaseTest │ │ │ │ └── BaseExtCaseTest.ino │ │ │ ├── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ │ ├── MiniSerial │ │ │ │ └── MiniSerial.ino │ │ │ ├── PrintBenchmarkSD │ │ │ │ └── PrintBenchmarkSD.ino │ │ │ ├── SD_Size │ │ │ │ └── SD_Size.ino │ │ │ ├── SdFatSize │ │ │ │ └── SdFatSize.ino │ │ │ ├── StreamParseInt │ │ │ │ └── StreamParseInt.ino │ │ │ ├── append │ │ │ │ └── append.ino │ │ │ ├── average │ │ │ │ └── average.ino │ │ │ ├── benchSD │ │ │ │ └── benchSD.ino │ │ │ ├── bufstream │ │ │ │ └── bufstream.ino │ │ │ ├── cin_cout │ │ │ │ └── cin_cout.ino │ │ │ ├── eventlog │ │ │ │ └── eventlog.ino │ │ │ ├── fgetsRewrite │ │ │ │ └── fgetsRewrite.ino │ │ │ ├── readlog │ │ │ │ └── readlog.ino │ │ │ └── readme.txt │ │ ├── AnalogBinLogger │ │ │ ├── AnalogBinLogger.h │ │ │ └── AnalogBinLogger.ino │ │ ├── DirectoryFunctions │ │ │ └── DirectoryFunctions.ino │ │ ├── LongFileName │ │ │ ├── LongFileName.ino │ │ │ └── testFiles │ │ │ │ ├── A long name can be 255 characters.txt │ │ │ │ ├── LFN,NAME.TXT │ │ │ │ ├── MIXCASE.txt │ │ │ │ ├── Not_8_3.txt │ │ │ │ ├── OK%83.TXT │ │ │ │ ├── STD_8_3.TXT │ │ │ │ ├── With Blank.txt │ │ │ │ ├── With.Two dots.txt │ │ │ │ ├── lower.txt │ │ │ │ └── mixed.TXT │ │ ├── LowLatencyLogger │ │ │ ├── LowLatencyLogger.ino │ │ │ ├── UserFunctions.cpp │ │ │ └── UserTypes.h │ │ ├── LowLatencyLoggerADXL345 │ │ │ ├── LowLatencyLogger.ino │ │ │ ├── LowLatencyLoggerADXL345.ino │ │ │ ├── UserFunctions.cpp │ │ │ ├── UserTypes.h │ │ │ └── readme.txt │ │ ├── LowLatencyLoggerMPU6050 │ │ │ ├── LowLatencyLogger.ino │ │ │ ├── LowLatencyLoggerMPU6050.ino │ │ │ ├── UserFunctions.cpp │ │ │ └── UserTypes.h │ │ ├── OpenNext │ │ │ └── OpenNext.ino │ │ ├── PrintBenchmark │ │ │ └── PrintBenchmark.ino │ │ ├── QuickStart │ │ │ └── QuickStart.ino │ │ ├── RawWrite │ │ │ └── RawWrite.ino │ │ ├── ReadCsv │ │ │ └── ReadCsv.ino │ │ ├── ReadCsvArray │ │ │ └── ReadCsvArray.ino │ │ ├── ReadCsvStream │ │ │ └── ReadCsvStream.ino │ │ ├── ReadWrite │ │ │ └── ReadWrite.ino │ │ ├── STM32Test │ │ │ └── STM32Test.ino │ │ ├── SdFormatter │ │ │ └── SdFormatter.ino │ │ ├── SdInfo │ │ │ └── SdInfo.ino │ │ ├── SoftwareSpi │ │ │ └── SoftwareSpi.ino │ │ ├── StdioBench │ │ │ └── StdioBench.ino │ │ ├── TeensySdioDemo │ │ │ └── TeensySdioDemo.ino │ │ ├── Timestamp │ │ │ └── Timestamp.ino │ │ ├── TwoCards │ │ │ └── TwoCards.ino │ │ ├── VolumeFreeSpace │ │ │ └── VolumeFreeSpace.ino │ │ ├── bench │ │ │ └── bench.ino │ │ ├── dataLogger │ │ │ └── dataLogger.ino │ │ ├── fgets │ │ │ └── fgets.ino │ │ ├── formatting │ │ │ └── formatting.ino │ │ ├── getline │ │ │ └── getline.ino │ │ ├── rename │ │ │ └── rename.ino │ │ └── wipe │ │ │ └── wipe.ino │ ├── extras │ │ ├── AnalogBinLoggerExtras │ │ │ ├── ADC_ENOB.PNG │ │ │ ├── ADCdocs │ │ │ │ ├── ATmegaADCAccuracy.pdf │ │ │ │ └── ExcelFFT.pdf │ │ │ ├── AdcErrorStudy.txt │ │ │ ├── DATA.png │ │ │ ├── FFT.png │ │ │ ├── RateTable.txt │ │ │ ├── bintocsv │ │ │ │ ├── AnalogBinLogger.h │ │ │ │ └── bintocsv.cpp │ │ │ └── readme.txt │ │ ├── MainPage │ │ │ └── SdFatmainpage.h │ │ ├── SdFat.html │ │ ├── SdFatTestSuite │ │ │ ├── SdFatTestSuite.cpp │ │ │ ├── SdFatTestSuite.h │ │ │ └── examples │ │ │ │ ├── ATS_SD_File │ │ │ │ └── ATS_SD_File.ino │ │ │ │ ├── ATS_SD_Files │ │ │ │ └── ATS_SD_Files.ino │ │ │ │ ├── ATS_SD_Seek │ │ │ │ └── ATS_SD_Seek.ino │ │ │ │ ├── StressTest │ │ │ │ └── StressTest.ino │ │ │ │ ├── TestMkdir │ │ │ │ └── TestMkdir.ino │ │ │ │ ├── TestRmdir │ │ │ │ └── TestRmdir.ino │ │ │ │ ├── fstreamTest │ │ │ │ └── fstreamTest.ino │ │ │ │ ├── istreamTest │ │ │ │ └── istreamTest.ino │ │ │ │ ├── lfnSize │ │ │ │ └── lfnSize.ino │ │ │ │ ├── lfnTest │ │ │ │ └── lfnTest.ino │ │ │ │ ├── lfnTestCout │ │ │ │ └── lfnTestCout.ino │ │ │ │ └── ostreamTest │ │ │ │ └── ostreamTest.ino │ │ ├── changes.txt │ │ └── html │ │ │ ├── _arduino_files_8h.html │ │ │ ├── _arduino_files_8h__dep__incl.png │ │ │ ├── _arduino_files_8h__incl.png │ │ │ ├── _arduino_stream_8h.html │ │ │ ├── _arduino_stream_8h__dep__incl.png │ │ │ ├── _arduino_stream_8h__incl.png │ │ │ ├── _block_driver_8h.html │ │ │ ├── _block_driver_8h__dep__incl.png │ │ │ ├── _block_driver_8h__incl.png │ │ │ ├── _fat_file_8h.html │ │ │ ├── _fat_file_8h__dep__incl.png │ │ │ ├── _fat_file_8h__incl.png │ │ │ ├── _fat_file_system_8h.html │ │ │ ├── _fat_file_system_8h__incl.png │ │ │ ├── _fat_lib_config_8h.html │ │ │ ├── _fat_lib_config_8h__dep__incl.png │ │ │ ├── _fat_lib_config_8h__incl.png │ │ │ ├── _fat_structs_8h.html │ │ │ ├── _fat_structs_8h__dep__incl.png │ │ │ ├── _fat_volume_8h.html │ │ │ ├── _fat_volume_8h__dep__incl.png │ │ │ ├── _fat_volume_8h__incl.png │ │ │ ├── _free_stack_8h.html │ │ │ ├── _minimum_serial_8h.html │ │ │ ├── _minimum_serial_8h__incl.png │ │ │ ├── _sd_fat_8h.html │ │ │ ├── _sd_fat_8h__incl.png │ │ │ ├── _sd_fat_config_8h.html │ │ │ ├── _sd_fat_config_8h__dep__incl.png │ │ │ ├── _sd_fat_config_8h__incl.png │ │ │ ├── _sd_spi_card_8h.html │ │ │ ├── _sd_spi_card_8h__dep__incl.png │ │ │ ├── _sd_spi_card_8h__incl.png │ │ │ ├── _stdio_stream_8h.html │ │ │ ├── _stdio_stream_8h__incl.png │ │ │ ├── _sys_call_8h.html │ │ │ ├── _sys_call_8h__dep__incl.png │ │ │ ├── annotated.html │ │ │ ├── arrowdown.png │ │ │ ├── arrowright.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── bufstream_8h.html │ │ │ ├── bufstream_8h__dep__incl.png │ │ │ ├── bufstream_8h__incl.png │ │ │ ├── class_arduino_in_stream-members.html │ │ │ ├── class_arduino_in_stream.html │ │ │ ├── class_arduino_in_stream__coll__graph.png │ │ │ ├── class_arduino_in_stream__inherit__graph.png │ │ │ ├── class_arduino_out_stream-members.html │ │ │ ├── class_arduino_out_stream.html │ │ │ ├── class_arduino_out_stream__coll__graph.png │ │ │ ├── class_arduino_out_stream__inherit__graph.png │ │ │ ├── class_base_block_driver-members.html │ │ │ ├── class_base_block_driver.html │ │ │ ├── class_base_block_driver__inherit__graph.png │ │ │ ├── class_fat_cache-members.html │ │ │ ├── class_fat_cache.html │ │ │ ├── class_fat_file-members.html │ │ │ ├── class_fat_file.html │ │ │ ├── class_fat_file__inherit__graph.png │ │ │ ├── class_fat_file_system-members.html │ │ │ ├── class_fat_file_system.html │ │ │ ├── class_fat_file_system__coll__graph.png │ │ │ ├── class_fat_file_system__inherit__graph.png │ │ │ ├── class_fat_stream_base-members.html │ │ │ ├── class_fat_stream_base.html │ │ │ ├── class_fat_stream_base__coll__graph.png │ │ │ ├── class_fat_stream_base__inherit__graph.png │ │ │ ├── class_fat_volume-members.html │ │ │ ├── class_fat_volume.html │ │ │ ├── class_fat_volume__inherit__graph.png │ │ │ ├── class_file-members.html │ │ │ ├── class_file.html │ │ │ ├── class_file__coll__graph.png │ │ │ ├── class_file__inherit__graph.png │ │ │ ├── class_minimum_serial-members.html │ │ │ ├── class_minimum_serial.html │ │ │ ├── class_minimum_serial__coll__graph.png │ │ │ ├── class_minimum_serial__inherit__graph.png │ │ │ ├── class_print_file-members.html │ │ │ ├── class_print_file.html │ │ │ ├── class_print_file__coll__graph.png │ │ │ ├── class_print_file__inherit__graph.png │ │ │ ├── class_sd2_card-members.html │ │ │ ├── class_sd2_card.html │ │ │ ├── class_sd2_card__coll__graph.png │ │ │ ├── class_sd2_card__inherit__graph.png │ │ │ ├── class_sd_base_file-members.html │ │ │ ├── class_sd_base_file.html │ │ │ ├── class_sd_base_file__coll__graph.png │ │ │ ├── class_sd_base_file__inherit__graph.png │ │ │ ├── class_sd_fat-members.html │ │ │ ├── class_sd_fat.html │ │ │ ├── class_sd_fat__coll__graph.png │ │ │ ├── class_sd_fat__inherit__graph.png │ │ │ ├── class_sd_fat_e_x-members.html │ │ │ ├── class_sd_fat_e_x.html │ │ │ ├── class_sd_fat_e_x__coll__graph.png │ │ │ ├── class_sd_fat_e_x__inherit__graph.png │ │ │ ├── class_sd_fat_sdio-members.html │ │ │ ├── class_sd_fat_sdio.html │ │ │ ├── class_sd_fat_sdio__coll__graph.png │ │ │ ├── class_sd_fat_sdio__inherit__graph.png │ │ │ ├── class_sd_fat_soft_spi-members.html │ │ │ ├── class_sd_fat_soft_spi.html │ │ │ ├── class_sd_fat_soft_spi__coll__graph.png │ │ │ ├── class_sd_fat_soft_spi__inherit__graph.png │ │ │ ├── class_sd_fat_soft_spi_e_x-members.html │ │ │ ├── class_sd_fat_soft_spi_e_x.html │ │ │ ├── class_sd_fat_soft_spi_e_x__coll__graph.png │ │ │ ├── class_sd_fat_soft_spi_e_x__inherit__graph.png │ │ │ ├── class_sd_file-members.html │ │ │ ├── class_sd_file.html │ │ │ ├── class_sd_file__coll__graph.png │ │ │ ├── class_sd_file__inherit__graph.png │ │ │ ├── class_sd_file_system-members.html │ │ │ ├── class_sd_file_system.html │ │ │ ├── class_sd_file_system__coll__graph.png │ │ │ ├── class_sd_file_system__inherit__graph.png │ │ │ ├── class_sd_spi_card-members.html │ │ │ ├── class_sd_spi_card.html │ │ │ ├── class_sd_spi_card__inherit__graph.png │ │ │ ├── class_sd_spi_card_e_x-members.html │ │ │ ├── class_sd_spi_card_e_x.html │ │ │ ├── class_sd_spi_card_e_x__coll__graph.png │ │ │ ├── class_sd_spi_card_e_x__inherit__graph.png │ │ │ ├── class_sdio_card-members.html │ │ │ ├── class_sdio_card.html │ │ │ ├── class_sdio_card__coll__graph.png │ │ │ ├── class_sdio_card__inherit__graph.png │ │ │ ├── class_stdio_stream-members.html │ │ │ ├── class_stdio_stream.html │ │ │ ├── class_stdio_stream__coll__graph.png │ │ │ ├── class_stdio_stream__inherit__graph.png │ │ │ ├── class_sys_call-members.html │ │ │ ├── class_sys_call.html │ │ │ ├── classes.html │ │ │ ├── classfstream-members.html │ │ │ ├── classfstream.html │ │ │ ├── classfstream__coll__graph.png │ │ │ ├── classfstream__inherit__graph.png │ │ │ ├── classibufstream-members.html │ │ │ ├── classibufstream.html │ │ │ ├── classibufstream__coll__graph.png │ │ │ ├── classibufstream__inherit__graph.png │ │ │ ├── classifstream-members.html │ │ │ ├── classifstream.html │ │ │ ├── classifstream__coll__graph.png │ │ │ ├── classifstream__inherit__graph.png │ │ │ ├── classios-members.html │ │ │ ├── classios.html │ │ │ ├── classios__base-members.html │ │ │ ├── classios__base.html │ │ │ ├── classios__base__inherit__graph.png │ │ │ ├── classios__coll__graph.png │ │ │ ├── classios__inherit__graph.png │ │ │ ├── classiostream-members.html │ │ │ ├── classiostream.html │ │ │ ├── classiostream__coll__graph.png │ │ │ ├── classiostream__inherit__graph.png │ │ │ ├── classistream-members.html │ │ │ ├── classistream.html │ │ │ ├── classistream__coll__graph.png │ │ │ ├── classistream__inherit__graph.png │ │ │ ├── classobufstream-members.html │ │ │ ├── classobufstream.html │ │ │ ├── classobufstream__coll__graph.png │ │ │ ├── classobufstream__inherit__graph.png │ │ │ ├── classofstream-members.html │ │ │ ├── classofstream.html │ │ │ ├── classofstream__coll__graph.png │ │ │ ├── classofstream__inherit__graph.png │ │ │ ├── classostream-members.html │ │ │ ├── classostream.html │ │ │ ├── classostream__coll__graph.png │ │ │ ├── classostream__inherit__graph.png │ │ │ ├── closed.png │ │ │ ├── dir_000004_000006.html │ │ │ ├── dir_1281b15c327061056ab3b326e90c50cf.html │ │ │ ├── dir_1281b15c327061056ab3b326e90c50cf_dep.png │ │ │ ├── dir_481cc946b8a81b8d9363a4aad6201160.html │ │ │ ├── dir_481cc946b8a81b8d9363a4aad6201160_dep.png │ │ │ ├── dir_63fabcaba1b3b939579f46003349a6c5.html │ │ │ ├── dir_63fabcaba1b3b939579f46003349a6c5_dep.png │ │ │ ├── dir_7e472674a7b7d2590a789f197241f95f.html │ │ │ ├── dir_7e472674a7b7d2590a789f197241f95f_dep.png │ │ │ ├── dir_a70af2fb8f1edf8b7124f41d82dbf480.html │ │ │ ├── dir_a70af2fb8f1edf8b7124f41d82dbf480_dep.png │ │ │ ├── dir_a991eec27578c865874ede3d8ec657c2.html │ │ │ ├── dir_a991eec27578c865874ede3d8ec657c2_dep.png │ │ │ ├── dir_c18d6c86f7b0afecac5c3a8a9885031e.html │ │ │ ├── dir_c18d6c86f7b0afecac5c3a8a9885031e_dep.png │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── fstream_8h.html │ │ │ ├── fstream_8h__incl.png │ │ │ ├── functions.html │ │ │ ├── functions_b.html │ │ │ ├── functions_c.html │ │ │ ├── functions_d.html │ │ │ ├── functions_e.html │ │ │ ├── functions_enum.html │ │ │ ├── functions_eval.html │ │ │ ├── functions_f.html │ │ │ ├── functions_func.html │ │ │ ├── functions_func_b.html │ │ │ ├── functions_func_c.html │ │ │ ├── functions_func_d.html │ │ │ ├── functions_func_e.html │ │ │ ├── functions_func_f.html │ │ │ ├── functions_func_g.html │ │ │ ├── functions_func_h.html │ │ │ ├── functions_func_i.html │ │ │ ├── functions_func_l.html │ │ │ ├── functions_func_m.html │ │ │ ├── functions_func_n.html │ │ │ ├── functions_func_o.html │ │ │ ├── functions_func_p.html │ │ │ ├── functions_func_r.html │ │ │ ├── functions_func_s.html │ │ │ ├── functions_func_t.html │ │ │ ├── functions_func_u.html │ │ │ ├── functions_func_v.html │ │ │ ├── functions_func_w.html │ │ │ ├── functions_func_y.html │ │ │ ├── functions_g.html │ │ │ ├── functions_h.html │ │ │ ├── functions_i.html │ │ │ ├── functions_j.html │ │ │ ├── functions_l.html │ │ │ ├── functions_m.html │ │ │ ├── functions_n.html │ │ │ ├── functions_o.html │ │ │ ├── functions_p.html │ │ │ ├── functions_r.html │ │ │ ├── functions_s.html │ │ │ ├── functions_t.html │ │ │ ├── functions_type.html │ │ │ ├── functions_u.html │ │ │ ├── functions_v.html │ │ │ ├── functions_vars.html │ │ │ ├── functions_w.html │ │ │ ├── functions_y.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── globals_vars.html │ │ │ ├── graph_legend.html │ │ │ ├── graph_legend.png │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── inherit_graph_0.png │ │ │ ├── inherit_graph_1.png │ │ │ ├── inherit_graph_10.png │ │ │ ├── inherit_graph_11.png │ │ │ ├── inherit_graph_12.png │ │ │ ├── inherit_graph_13.png │ │ │ ├── inherit_graph_14.png │ │ │ ├── inherit_graph_15.png │ │ │ ├── inherit_graph_16.png │ │ │ ├── inherit_graph_17.png │ │ │ ├── inherit_graph_18.png │ │ │ ├── inherit_graph_19.png │ │ │ ├── inherit_graph_2.png │ │ │ ├── inherit_graph_3.png │ │ │ ├── inherit_graph_4.png │ │ │ ├── inherit_graph_5.png │ │ │ ├── inherit_graph_6.png │ │ │ ├── inherit_graph_7.png │ │ │ ├── inherit_graph_8.png │ │ │ ├── inherit_graph_9.png │ │ │ ├── inherits.html │ │ │ ├── ios_8h.html │ │ │ ├── ios_8h__dep__incl.png │ │ │ ├── ios_8h__incl.png │ │ │ ├── iostream_8h.html │ │ │ ├── iostream_8h__dep__incl.png │ │ │ ├── iostream_8h__incl.png │ │ │ ├── istream_8h.html │ │ │ ├── istream_8h__dep__incl.png │ │ │ ├── istream_8h__incl.png │ │ │ ├── jquery.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── ostream_8h.html │ │ │ ├── ostream_8h__dep__incl.png │ │ │ ├── ostream_8h__incl.png │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_16.html │ │ │ ├── all_16.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── classes_4.html │ │ │ ├── classes_4.js │ │ │ ├── classes_5.html │ │ │ ├── classes_5.js │ │ │ ├── classes_6.html │ │ │ ├── classes_6.js │ │ │ ├── classes_7.html │ │ │ ├── classes_7.js │ │ │ ├── classes_8.html │ │ │ ├── classes_8.js │ │ │ ├── classes_9.html │ │ │ ├── classes_9.js │ │ │ ├── classes_a.html │ │ │ ├── classes_a.js │ │ │ ├── close.png │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── defines_4.html │ │ │ ├── defines_4.js │ │ │ ├── defines_5.html │ │ │ ├── defines_5.js │ │ │ ├── defines_6.html │ │ │ ├── defines_6.js │ │ │ ├── defines_7.html │ │ │ ├── defines_7.js │ │ │ ├── defines_8.html │ │ │ ├── defines_8.js │ │ │ ├── defines_9.html │ │ │ ├── defines_9.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── enumvalues_2.html │ │ │ ├── enumvalues_2.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── files_6.html │ │ │ ├── files_6.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_10.html │ │ │ ├── functions_10.js │ │ │ ├── functions_11.html │ │ │ ├── functions_11.js │ │ │ ├── functions_12.html │ │ │ ├── functions_12.js │ │ │ ├── functions_13.html │ │ │ ├── functions_13.js │ │ │ ├── functions_14.html │ │ │ ├── functions_14.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── functions_a.html │ │ │ ├── functions_a.js │ │ │ ├── functions_b.html │ │ │ ├── functions_b.js │ │ │ ├── functions_c.html │ │ │ ├── functions_c.js │ │ │ ├── functions_d.html │ │ │ ├── functions_d.js │ │ │ ├── functions_e.html │ │ │ ├── functions_e.js │ │ │ ├── functions_f.html │ │ │ ├── functions_f.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── typedefs_2.html │ │ │ ├── typedefs_2.js │ │ │ ├── typedefs_3.html │ │ │ ├── typedefs_3.js │ │ │ ├── typedefs_4.html │ │ │ ├── typedefs_4.js │ │ │ ├── typedefs_5.html │ │ │ ├── typedefs_5.js │ │ │ ├── typedefs_6.html │ │ │ ├── typedefs_6.js │ │ │ ├── typedefs_7.html │ │ │ ├── typedefs_7.js │ │ │ ├── typedefs_8.html │ │ │ ├── typedefs_8.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_14.html │ │ │ ├── variables_14.js │ │ │ ├── variables_15.html │ │ │ ├── variables_15.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ │ ├── splitbar.png │ │ │ ├── struct_fat_pos__t-members.html │ │ │ ├── struct_fat_pos__t.html │ │ │ ├── structbios_parm_block-members.html │ │ │ ├── structbios_parm_block.html │ │ │ ├── structdirectory_entry-members.html │ │ │ ├── structdirectory_entry.html │ │ │ ├── structfat32__boot-members.html │ │ │ ├── structfat32__boot.html │ │ │ ├── structfat32__fsinfo-members.html │ │ │ ├── structfat32__fsinfo.html │ │ │ ├── structfat__boot-members.html │ │ │ ├── structfat__boot.html │ │ │ ├── structfname__t-members.html │ │ │ ├── structfname__t.html │ │ │ ├── structlong_directory_entry-members.html │ │ │ ├── structlong_directory_entry.html │ │ │ ├── structmaster_boot_record-members.html │ │ │ ├── structmaster_boot_record.html │ │ │ ├── structmaster_boot_record__coll__graph.png │ │ │ ├── structpartition_table-members.html │ │ │ ├── structpartition_table.html │ │ │ ├── structsetfill-members.html │ │ │ ├── structsetfill.html │ │ │ ├── structsetprecision-members.html │ │ │ ├── structsetprecision.html │ │ │ ├── structsetw-members.html │ │ │ ├── structsetw.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── unioncache__t-members.html │ │ │ ├── unioncache__t.html │ │ │ └── unioncache__t__coll__graph.png │ ├── library.properties │ └── src │ │ ├── BlockDriver.h │ │ ├── FatLib │ │ ├── ArduinoFiles.h │ │ ├── ArduinoStream.h │ │ ├── BaseBlockDriver.h │ │ ├── FatApiConstants.h │ │ ├── FatFile.cpp │ │ ├── FatFile.h │ │ ├── FatFileLFN.cpp │ │ ├── FatFilePrint.cpp │ │ ├── FatFileSFN.cpp │ │ ├── FatFileSystem.h │ │ ├── FatLib.h │ │ ├── FatLibConfig.h │ │ ├── FatStructs.h │ │ ├── FatVolume.cpp │ │ ├── FatVolume.h │ │ ├── FmtNumber.cpp │ │ ├── FmtNumber.h │ │ ├── StdioStream.cpp │ │ ├── StdioStream.h │ │ ├── bufstream.h │ │ ├── fstream.cpp │ │ ├── fstream.h │ │ ├── ios.h │ │ ├── iostream.h │ │ ├── istream.cpp │ │ ├── istream.h │ │ ├── ostream.cpp │ │ └── ostream.h │ │ ├── FreeStack.h │ │ ├── MinimumSerial.cpp │ │ ├── MinimumSerial.h │ │ ├── SdCard │ │ ├── SdInfo.h │ │ ├── SdSpiCard.cpp │ │ ├── SdSpiCard.h │ │ ├── SdSpiCardEX.cpp │ │ ├── SdioCard.h │ │ ├── SdioCardEX.cpp │ │ └── SdioTeensy.cpp │ │ ├── SdFat.h │ │ ├── SdFatConfig.h │ │ ├── SpiDriver │ │ ├── DigitalPin.h │ │ ├── SdSpiBaseDriver.h │ │ ├── SdSpiDriver.h │ │ ├── SdSpiESP8266.cpp │ │ ├── SdSpiSAM3X.cpp │ │ ├── SdSpiSTM32.cpp │ │ ├── SdSpiTeensy3.cpp │ │ ├── SoftSPI.h │ │ └── boards │ │ │ ├── AvrDevelopersGpioPinMap.h │ │ │ ├── BobuinoGpioPinMap.h │ │ │ ├── GpioPinMap.h │ │ │ ├── LeonardoGpioPinMap.h │ │ │ ├── MegaGpioPinMap.h │ │ │ ├── SleepingBeautyGpioPinMap.h │ │ │ ├── Standard1284GpioPinMap.h │ │ │ ├── Teensy2GpioPinMap.h │ │ │ ├── Teensy2ppGpioPinMap.h │ │ │ └── UnoGpioPinMap.h │ │ ├── SysCall.h │ │ └── sdios.h └── lua │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lparser.c │ ├── lparser.h │ ├── lrotable.c │ ├── lrotable.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltests.c │ ├── ltests.h │ ├── ltm.c │ ├── ltm.h │ ├── lua.h │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── lua-patches ├── LCD.patch ├── LTR_modified.patch ├── LTR_original.patch ├── ltr_readme.txt ├── teensy_change1.patch └── teensy_change2.patch └── lua-teensy ├── Makefile ├── lua-teensy.ino ├── sdwrapper.cpp └── sdwrapper.h /.gitignore: -------------------------------------------------------------------------------- 1 | build-teensy36 2 | -------------------------------------------------------------------------------- /libraries/SdFat/LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2011..2017 Bill Greiman 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /libraries/SdFat/examples/#attic/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include "SdFat.h" 3 | #include "sdios.h" 4 | 5 | // create a serial output stream 6 | ArduinoOutStream cout(Serial); 7 | 8 | void setup() { 9 | Serial.begin(9600); 10 | 11 | // Wait for USB Serial 12 | while (!Serial) { 13 | SysCall::yield(); 14 | } 15 | delay(2000); 16 | 17 | cout << "Hello, World!\n"; 18 | } 19 | 20 | void loop() {} 21 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/#attic/MiniSerial/MiniSerial.ino: -------------------------------------------------------------------------------- 1 | // This example illustrates use of SdFat's 2 | // minimal unbuffered AVR Serial support. 3 | // 4 | // This is useful for debug and saves RAM 5 | // Will not work on Due, Leonardo, or Teensy 6 | 7 | #include 8 | #include "SdFat.h" 9 | #include "FreeStack.h" 10 | #ifdef UDR0 // Must be AVR with serial port zero. 11 | #include "MinimumSerial.h" 12 | 13 | MinimumSerial MiniSerial; 14 | 15 | void setup() { 16 | MiniSerial.begin(9600); 17 | MiniSerial.println(FreeStack()); 18 | } 19 | void loop() { 20 | int c; 21 | MiniSerial.println(F("Type any Character")); 22 | while ((c = MiniSerial.read()) < 0) {} 23 | MiniSerial.print(F("Read: ")); 24 | MiniSerial.println((char)c); 25 | while (MiniSerial.read() >= 0) {} 26 | } 27 | #else // UDR0 28 | #error no AVR serial port 0 29 | #endif // UDR0 -------------------------------------------------------------------------------- /libraries/SdFat/examples/#attic/SD_Size/SD_Size.ino: -------------------------------------------------------------------------------- 1 | /* 2 | * Program to compare size of Arduino SD library with SdFat. 3 | * See SdFatSize.ino for SdFat program. 4 | */ 5 | #include 6 | #include 7 | 8 | File file; 9 | //------------------------------------------------------------------------------ 10 | void setup() { 11 | Serial.begin(9600); 12 | 13 | // Wait for USB Serial 14 | while (!Serial) { 15 | yield(); 16 | } 17 | 18 | if (!SD.begin()) { 19 | Serial.println("begin failed"); 20 | return; 21 | } 22 | file = SD.open("TEST_SD.TXT", FILE_WRITE); 23 | 24 | file.println("Hello"); 25 | 26 | file.close(); 27 | Serial.println("Done"); 28 | } 29 | //------------------------------------------------------------------------------ 30 | void loop() {} 31 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/#attic/SdFatSize/SdFatSize.ino: -------------------------------------------------------------------------------- 1 | /* 2 | * Program to compare size of SdFat with Arduino SD library. 3 | * See SD_Size.ino for Arduino SD program. 4 | * 5 | */ 6 | #include 7 | #include "SdFat.h" 8 | 9 | SdFat sd; 10 | 11 | SdFile file; 12 | //------------------------------------------------------------------------------ 13 | void setup() { 14 | Serial.begin(9600); 15 | 16 | // Wait for USB Serial 17 | while (!Serial) { 18 | SysCall::yield(); 19 | } 20 | 21 | if (!sd.begin()) { 22 | Serial.println("begin failed"); 23 | return; 24 | } 25 | file.open("SizeTest.txt", O_RDWR | O_CREAT | O_AT_END); 26 | 27 | file.println("Hello"); 28 | 29 | file.close(); 30 | Serial.println("Done"); 31 | } 32 | //------------------------------------------------------------------------------ 33 | void loop() {} 34 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/#attic/bufstream/bufstream.ino: -------------------------------------------------------------------------------- 1 | /* 2 | * Use of ibufsteam to parse a line and obufstream to format a line 3 | */ 4 | #include 5 | #include "SdFat.h" 6 | #include "sdios.h" 7 | 8 | // create a serial output stream 9 | ArduinoOutStream cout(Serial); 10 | //------------------------------------------------------------------------------ 11 | void setup() { 12 | char buf[20]; // buffer for formatted line 13 | int i, j, k; // values from parsed line 14 | 15 | Serial.begin(9600); 16 | 17 | // Wait for USB Serial 18 | while (!Serial) { 19 | SysCall::yield(); 20 | } 21 | delay(2000); 22 | 23 | // initialize input string 24 | ibufstream bin("123 456 789"); 25 | 26 | // parse the string "123 456 789" 27 | bin >> i >> j >> k; 28 | 29 | // initialize output buffer 30 | obufstream bout(buf, sizeof(buf)); 31 | 32 | // format the output string 33 | bout << k << ',' << j << ',' << i << endl; 34 | 35 | // write the string to serial 36 | cout << buf; 37 | } 38 | 39 | void loop() {} 40 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/#attic/cin_cout/cin_cout.ino: -------------------------------------------------------------------------------- 1 | /* 2 | * Demo of ArduinoInStream and ArduinoOutStream 3 | */ 4 | #include 5 | #include "SdFat.h" 6 | #include "sdios.h" 7 | 8 | // create serial output stream 9 | ArduinoOutStream cout(Serial); 10 | 11 | // input line buffer 12 | char cinBuf[40]; 13 | 14 | // create serial input stream 15 | ArduinoInStream cin(Serial, cinBuf, sizeof(cinBuf)); 16 | //------------------------------------------------------------------------------ 17 | void setup() { 18 | Serial.begin(9600); 19 | // Wait for USB Serial 20 | while (!Serial) { 21 | SysCall::yield(); 22 | } 23 | } 24 | //------------------------------------------------------------------------------ 25 | void loop() { 26 | int32_t n = 0; 27 | 28 | cout << "\nenter an integer\n"; 29 | 30 | cin.readline(); 31 | 32 | if (cin >> n) { 33 | cout << "The number is: " << n; 34 | } else { 35 | // will fail if no digits or not in range [-2147483648, 2147483647] 36 | cout << "Invalid input: " << cinBuf; 37 | } 38 | cout << endl; 39 | } 40 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/A long name can be 255 characters.txt: -------------------------------------------------------------------------------- 1 | This is "A long name can be 255 characters.txt" 2 | This file has a typical Long File Name. 3 | 4 | The maximum length of a Long File Name is 255 characters. 5 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/LFN,NAME.TXT: -------------------------------------------------------------------------------- 1 | LFN,NAME.TXT is not 8.3 since it has a comma. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/MIXCASE.txt: -------------------------------------------------------------------------------- 1 | MIXCASE.txt does not have a Long File Name. 2 | 3 | Starting with NT, file names of this form, 4 | have the basename and extension character case 5 | encoded in two bits of the 8.3 directory entry. 6 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/Not_8_3.txt: -------------------------------------------------------------------------------- 1 | Not_8_3.txt has a Long File Name 2 | since the basename is mixed case. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/OK%83.TXT: -------------------------------------------------------------------------------- 1 | OK%83.TXT is a valid 8.3 name. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/STD_8_3.TXT: -------------------------------------------------------------------------------- 1 | STD_8_3.TXT - a vanilla 8.3 name. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/With Blank.txt: -------------------------------------------------------------------------------- 1 | With Blank.txt 2 | Just another example of a Long File Name. 3 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/With.Two dots.txt: -------------------------------------------------------------------------------- 1 | "With Two.dots.txt" 2 | Lots of reasons this is a Long File Name. 3 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/lower.txt: -------------------------------------------------------------------------------- 1 | lower.txt does not have a Long File Name. 2 | 3 | Starting with NT, file names of this form, 4 | have the basename and extension character case 5 | encoded in two bits of the 8.3 directory entry. 6 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LongFileName/testFiles/mixed.TXT: -------------------------------------------------------------------------------- 1 | mixed.TXT does not have a Long File Name. 2 | 3 | Starting with NT, file names of this form, 4 | have the basename and extension character case 5 | encoded in two bits of the 8.3 directory entry. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLogger/UserFunctions.cpp: -------------------------------------------------------------------------------- 1 | #include "UserTypes.h" 2 | // User data functions. Modify these functions for your data items. 3 | 4 | // Start time for data 5 | static uint32_t startMicros; 6 | 7 | // Acquire a data record. 8 | void acquireData(data_t* data) { 9 | data->time = micros(); 10 | for (int i = 0; i < ADC_DIM; i++) { 11 | data->adc[i] = analogRead(i); 12 | } 13 | } 14 | 15 | // Print a data record. 16 | void printData(Print* pr, data_t* data) { 17 | if (startMicros == 0) { 18 | startMicros = data->time; 19 | } 20 | pr->print(data->time - startMicros); 21 | for (int i = 0; i < ADC_DIM; i++) { 22 | pr->write(','); 23 | pr->print(data->adc[i]); 24 | } 25 | pr->println(); 26 | } 27 | 28 | // Print data header. 29 | void printHeader(Print* pr) { 30 | startMicros = 0; 31 | pr->print(F("micros")); 32 | for (int i = 0; i < ADC_DIM; i++) { 33 | pr->print(F(",adc")); 34 | pr->print(i); 35 | } 36 | pr->println(); 37 | } 38 | 39 | // Sensor setup 40 | void userSetup() { 41 | } 42 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLogger/UserTypes.h: -------------------------------------------------------------------------------- 1 | #ifndef UserTypes_h 2 | #define UserTypes_h 3 | #include "Arduino.h" 4 | // User data types. Modify for your data items. 5 | #define FILE_BASE_NAME "adc4pin" 6 | const uint8_t ADC_DIM = 4; 7 | struct data_t { 8 | uint32_t time; 9 | uint16_t adc[ADC_DIM]; 10 | }; 11 | void acquireData(data_t* data); 12 | void printData(Print* pr, data_t* data); 13 | void printHeader(Print* pr); 14 | void userSetup(); 15 | #endif // UserTypes_h 16 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLoggerADXL345/LowLatencyLoggerADXL345.ino: -------------------------------------------------------------------------------- 1 | // Empty file with name LowLatencyLoggerADXL345.ino to make IDE happy. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLoggerADXL345/UserTypes.h: -------------------------------------------------------------------------------- 1 | #ifndef UserTypes_h 2 | #define UserTypes_h 3 | #include "Arduino.h" 4 | #include "SPI.h" 5 | #define USE_SHARED_SPI 1 6 | #define FILE_BASE_NAME "ADXL4G" 7 | // User data types. Modify for your data items. 8 | const uint8_t ACCEL_DIM = 3; 9 | struct data_t { 10 | uint32_t time; 11 | int16_t accel[ACCEL_DIM]; 12 | }; 13 | void acquireData(data_t* data); 14 | void printData(Print* pr, data_t* data); 15 | void printHeader(Print* pr); 16 | void userSetup(); 17 | #endif // UserTypes_h 18 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLoggerADXL345/readme.txt: -------------------------------------------------------------------------------- 1 | Test of shared SPI for LowLatencyLogger. -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLoggerMPU6050/LowLatencyLoggerMPU6050.ino: -------------------------------------------------------------------------------- 1 | // Empty file with name LowLatencyLoggerMPU6050.ino to make IDE happy. 2 | 3 | -------------------------------------------------------------------------------- /libraries/SdFat/examples/LowLatencyLoggerMPU6050/UserTypes.h: -------------------------------------------------------------------------------- 1 | #ifndef UserTypes_h 2 | #define UserTypes_h 3 | #include "Arduino.h" 4 | #define FILE_BASE_NAME "mpuraw" 5 | struct data_t { 6 | unsigned long time; 7 | int16_t ax; 8 | int16_t ay; 9 | int16_t az; 10 | int16_t gx; 11 | int16_t gy; 12 | int16_t gz; 13 | }; 14 | void acquireData(data_t* data); 15 | void printData(Print* pr, data_t* data); 16 | void printHeader(Print* pr); 17 | void userSetup(); 18 | #endif // UserTypes_h 19 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/AnalogBinLoggerExtras/ADC_ENOB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/AnalogBinLoggerExtras/ADC_ENOB.PNG -------------------------------------------------------------------------------- /libraries/SdFat/extras/AnalogBinLoggerExtras/ADCdocs/ATmegaADCAccuracy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/AnalogBinLoggerExtras/ADCdocs/ATmegaADCAccuracy.pdf -------------------------------------------------------------------------------- /libraries/SdFat/extras/AnalogBinLoggerExtras/ADCdocs/ExcelFFT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/AnalogBinLoggerExtras/ADCdocs/ExcelFFT.pdf -------------------------------------------------------------------------------- /libraries/SdFat/extras/AnalogBinLoggerExtras/DATA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/AnalogBinLoggerExtras/DATA.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/AnalogBinLoggerExtras/FFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/AnalogBinLoggerExtras/FFT.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/AnalogBinLoggerExtras/RateTable.txt: -------------------------------------------------------------------------------- 1 | Maximum Sample Rate Table 2 | 3 | ADC clock kHz 4 | 125 250 500 1000 5 | pins 6 | 1 7692 14286 25000 40000 7 | 2 3810 6667 11111 16667 8 | 3 2572 4790 8421 13559 9 | 4 1942 3636 6452 10526 10 | 5 1559 2930 5229 8602 11 | 6 1303 2454 4396 7273 12 | 7 1119 2111 3791 6299 13 | 8 980 1852 3333 5556 14 | 9 872 1649 2974 4969 15 | 10 786 1487 2685 4494 16 | 11 715 1354 2446 4103 17 | 12 656 1242 2247 3774 18 | 13 606 1148 2078 3493 19 | 14 563 1067 1932 3252 20 | 15 525 996 1806 3042 21 | 16 493 935 1695 2857 22 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/SdFat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | A web page that points a browser to a different page 4 | 5 | 6 | 7 | 8 | Your browser didn't automatically redirect. Open html/index.html manually. 9 | 10 | 11 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/SdFatTestSuite/examples/lfnSize/lfnSize.ino: -------------------------------------------------------------------------------- 1 | // Program to compare size of SdFat with the SD.h library. 2 | #include 3 | // Select the test library by commenting out one of the following two lines. 4 | // #include 5 | #include 6 | 7 | // SD chip select pin. 8 | const uint8_t SD_CS_PIN = SS; 9 | 10 | #ifdef __SD_H__ 11 | File file; 12 | #else // __SD_H__ 13 | SdFat SD; 14 | SdFile file; 15 | #endif // __SD_H__ 16 | 17 | void setup() { 18 | Serial.begin(9600); 19 | while (!Serial) {} // wait for Leonardo 20 | 21 | if (!SD.begin(SD_CS_PIN)) { 22 | Serial.println("begin failed"); 23 | return; 24 | } 25 | #ifdef __SD_H__ 26 | file = SD.open("SFN_file.txt", FILE_WRITE); 27 | #else // __SD_H__ 28 | file.open("LFN_file.txt", O_RDWR | O_CREAT); 29 | #endif // __SD_H__ 30 | 31 | file.println("Hello"); 32 | file.close(); 33 | Serial.println("Done"); 34 | } 35 | //------------------------------------------------------------------------------ 36 | void loop() {} -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_arduino_files_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_arduino_files_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_arduino_files_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_arduino_files_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_arduino_stream_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_arduino_stream_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_arduino_stream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_arduino_stream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_block_driver_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_block_driver_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_block_driver_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_block_driver_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_file_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_file_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_file_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_file_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_file_system_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_file_system_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_lib_config_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_lib_config_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_lib_config_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_lib_config_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_structs_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_structs_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_volume_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_volume_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_fat_volume_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_fat_volume_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_minimum_serial_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_minimum_serial_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_sd_fat_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_sd_fat_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_sd_fat_config_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_sd_fat_config_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_sd_fat_config_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_sd_fat_config_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_sd_spi_card_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_sd_spi_card_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_sd_spi_card_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_sd_spi_card_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_stdio_stream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_stdio_stream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/_sys_call_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/_sys_call_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/arrowdown.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/arrowright.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/bc_s.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/bdwn.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/bufstream_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/bufstream_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/bufstream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/bufstream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_arduino_in_stream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_arduino_in_stream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_arduino_in_stream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_arduino_in_stream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_arduino_out_stream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_arduino_out_stream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_arduino_out_stream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_arduino_out_stream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_base_block_driver__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_base_block_driver__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_fat_file__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_fat_file__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_fat_file_system__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_fat_file_system__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_fat_file_system__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_fat_file_system__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_fat_stream_base__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_fat_stream_base__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_fat_stream_base__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_fat_stream_base__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_fat_volume__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_fat_volume__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_file__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_file__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_file__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_file__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_minimum_serial__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_minimum_serial__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_minimum_serial__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_minimum_serial__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_print_file__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_print_file__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_print_file__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_print_file__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd2_card__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd2_card__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd2_card__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd2_card__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_base_file__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_base_file__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_base_file__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_base_file__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_e_x__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_e_x__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_e_x__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_e_x__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_sdio__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_sdio__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_sdio__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_sdio__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_soft_spi__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_soft_spi__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_soft_spi__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_soft_spi__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_soft_spi_e_x__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_soft_spi_e_x__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_fat_soft_spi_e_x__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_fat_soft_spi_e_x__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_file__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_file__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_file__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_file__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_file_system__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_file_system__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_file_system__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_file_system__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_spi_card__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_spi_card__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_spi_card_e_x__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_spi_card_e_x__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sd_spi_card_e_x__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sd_spi_card_e_x__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sdio_card__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sdio_card__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_sdio_card__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_sdio_card__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_stdio_stream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_stdio_stream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/class_stdio_stream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/class_stdio_stream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classfstream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classfstream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classfstream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classfstream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classibufstream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classibufstream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classibufstream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classibufstream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classifstream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classifstream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classifstream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classifstream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classios__base__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classios__base__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classios__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classios__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classios__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classios__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classiostream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classiostream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classiostream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classiostream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classistream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classistream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classistream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classistream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classobufstream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classobufstream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classobufstream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classobufstream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classofstream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classofstream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classofstream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classofstream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classostream__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classostream__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/classostream__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/classostream__inherit__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/closed.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_1281b15c327061056ab3b326e90c50cf_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_1281b15c327061056ab3b326e90c50cf_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_481cc946b8a81b8d9363a4aad6201160_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_481cc946b8a81b8d9363a4aad6201160_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_63fabcaba1b3b939579f46003349a6c5_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_63fabcaba1b3b939579f46003349a6c5_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_7e472674a7b7d2590a789f197241f95f_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_7e472674a7b7d2590a789f197241f95f_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_a70af2fb8f1edf8b7124f41d82dbf480_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_a70af2fb8f1edf8b7124f41d82dbf480_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_a991eec27578c865874ede3d8ec657c2_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_a991eec27578c865874ede3d8ec657c2_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/dir_c18d6c86f7b0afecac5c3a8a9885031e_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/dir_c18d6c86f7b0afecac5c3a8a9885031e_dep.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/doc.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/doxygen.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/folderclosed.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/folderopen.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/fstream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/fstream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/graph_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/graph_legend.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_0.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_1.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_10.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_11.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_12.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_13.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_14.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_15.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_16.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_17.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_18.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_19.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_2.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_3.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_4.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_5.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_6.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_7.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_8.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/inherit_graph_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/inherit_graph_9.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/ios_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/ios_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/ios_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/ios_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/iostream_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/iostream_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/iostream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/iostream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/istream_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/istream_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/istream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/istream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/nav_f.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/nav_g.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/nav_h.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/open.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/ostream_8h__dep__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/ostream_8h__dep__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/ostream_8h__incl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/ostream_8h__incl.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['_5f_5fbrkval',['__brkval',['../_free_stack_8h.html#ad193a2cc121e0d4614a1c21eb463fb56',1,'FreeStack.h']]], 4 | ['_5f_5fbss_5fend',['__bss_end',['../_free_stack_8h.html#adbad17f740c2d7f2bc4833681c93c932',1,'FreeStack.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['vol',['vol',['../class_fat_file_system.html#a4ca68fe47bb675df0a80df1ed7a53698',1,'FatFileSystem']]], 4 | ['volume',['volume',['../class_fat_file.html#a3c64bd8a9abb9a6461d4addb405614df',1,'FatFile']]], 5 | ['volumeblockcount',['volumeBlockCount',['../class_fat_volume.html#a07bc98088ce4a9c725700899c184f7fc',1,'FatVolume']]], 6 | ['volumelabel',['volumeLabel',['../structfat__boot.html#a9ee733f1b1abc0210ec8f9676bba2218',1,'fat_boot::volumeLabel()'],['../structfat32__boot.html#a8e6349f46344145a7320637a58107b3b',1,'fat32_boot::volumeLabel()']]], 7 | ['volumeserialnumber',['volumeSerialNumber',['../structfat__boot.html#ac05e88a0d27f0340ba008834361d2b20',1,'fat_boot::volumeSerialNumber()'],['../structfat32__boot.html#a20768678da224faefd8acf12cabdbfb8',1,'fat32_boot::volumeSerialNumber()']]], 8 | ['vwd',['vwd',['../class_fat_file_system.html#acf257d02b7166683bda2abc5058004bf',1,'FatFileSystem']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_16.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['yield',['yield',['../class_sys_call.html#a2219ba5ea8e411b022a3a00df5f380e0',1,'SysCall']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['halt',['halt',['../class_sys_call.html#a9b1ef8900e97f572ca561760b4dd4191',1,'SysCall']]], 4 | ['headcount',['headCount',['../structbios_parm_block.html#a2324ca82e2a7da4d91f458fa32a6e239',1,'biosParmBlock::headCount()'],['../structfat__boot.html#ae31da876cd9f48de5268a129218df2c2',1,'fat_boot::headCount()'],['../structfat32__boot.html#a1a5298db692526bc64243766d6b54181',1,'fat32_boot::headCount()']]], 5 | ['hex',['hex',['../classios__base.html#a3608e51eb0a80ea94ddadd5b713a3750',1,'ios_base::hex()'],['../ios_8h.html#ace2036d970905192360d622140bfe336',1,'hex(): ios.h']]], 6 | ['hidddensectors',['hidddenSectors',['../structbios_parm_block.html#a9413199be8525190d40589f60c22bcab',1,'biosParmBlock::hidddenSectors()'],['../structfat__boot.html#a18f1b4c245fe7bd09f5a9430c005e23a',1,'fat_boot::hidddenSectors()'],['../structfat32__boot.html#ab10224aa4bba42b262fcd3479e279e1f',1,'fat32_boot::hidddenSectors()']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jump',['jump',['../structfat__boot.html#a83f9f2d1d0130f25f34c90dfc82e3751',1,'fat_boot::jump()'],['../structfat32__boot.html#a2d93fc193a64ecffbd71ead207fe4810',1,'fat32_boot::jump()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/all_f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arduinoinstream',['ArduinoInStream',['../class_arduino_in_stream.html',1,'']]], 4 | ['arduinooutstream',['ArduinoOutStream',['../class_arduino_out_stream.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['baseblockdriver',['BaseBlockDriver',['../class_base_block_driver.html',1,'']]], 4 | ['biosparmblock',['biosParmBlock',['../structbios_parm_block.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cache_5ft',['cache_t',['../unioncache__t.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['directoryentry',['directoryEntry',['../structdirectory_entry.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fat32_5fboot',['fat32_boot',['../structfat32__boot.html',1,'']]], 4 | ['fat32_5ffsinfo',['fat32_fsinfo',['../structfat32__fsinfo.html',1,'']]], 5 | ['fat_5fboot',['fat_boot',['../structfat__boot.html',1,'']]], 6 | ['fatcache',['FatCache',['../class_fat_cache.html',1,'']]], 7 | ['fatfile',['FatFile',['../class_fat_file.html',1,'']]], 8 | ['fatfilesystem',['FatFileSystem',['../class_fat_file_system.html',1,'']]], 9 | ['fatpos_5ft',['FatPos_t',['../struct_fat_pos__t.html',1,'']]], 10 | ['fatstreambase',['FatStreamBase',['../class_fat_stream_base.html',1,'']]], 11 | ['fatvolume',['FatVolume',['../class_fat_volume.html',1,'']]], 12 | ['file',['File',['../class_file.html',1,'']]], 13 | ['fname_5ft',['fname_t',['../structfname__t.html',1,'']]], 14 | ['fstream',['fstream',['../classfstream.html',1,'']]] 15 | ]; 16 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ibufstream',['ibufstream',['../classibufstream.html',1,'']]], 4 | ['ifstream',['ifstream',['../classifstream.html',1,'']]], 5 | ['ios',['ios',['../classios.html',1,'']]], 6 | ['ios_5fbase',['ios_base',['../classios__base.html',1,'']]], 7 | ['iostream',['iostream',['../classiostream.html',1,'']]], 8 | ['istream',['istream',['../classistream.html',1,'']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['longdirectoryentry',['longDirectoryEntry',['../structlong_directory_entry.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['masterbootrecord',['masterBootRecord',['../structmaster_boot_record.html',1,'']]], 4 | ['minimumserial',['MinimumSerial',['../class_minimum_serial.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['obufstream',['obufstream',['../classobufstream.html',1,'']]], 4 | ['ofstream',['ofstream',['../classofstream.html',1,'']]], 5 | ['ostream',['ostream',['../classostream.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['partitiontable',['partitionTable',['../structpartition_table.html',1,'']]], 4 | ['printfile',['PrintFile',['../class_print_file.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/classes_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/search/close.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['destructor_5fcloses_5ffile',['DESTRUCTOR_CLOSES_FILE',['../_sd_fat_config_8h.html#a9a2b1ca4d91cff876f48deeaacbc33da',1,'DESTRUCTOR_CLOSES_FILE(): SdFatConfig.h'],['../_fat_lib_config_8h.html#a9a2b1ca4d91cff876f48deeaacbc33da',1,'DESTRUCTOR_CLOSES_FILE(): FatLibConfig.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['enable_5farduino_5ffeatures',['ENABLE_ARDUINO_FEATURES',['../_fat_lib_config_8h.html#a9a8c1ea8596f35f7f33a24b642567206',1,'FatLibConfig.h']]], 4 | ['enable_5fextended_5ftransfer_5fclass',['ENABLE_EXTENDED_TRANSFER_CLASS',['../_sd_fat_config_8h.html#aad4f0ecbc65cdc3a7be544225b44f86a',1,'SdFatConfig.h']]], 5 | ['enable_5fsdio_5fclass',['ENABLE_SDIO_CLASS',['../_sd_fat_config_8h.html#a1d106f3a0ba8577abdcc9ce3961ef90b',1,'SdFatConfig.h']]], 6 | ['enable_5fsoftware_5fspi_5fclass',['ENABLE_SOFTWARE_SPI_CLASS',['../_sd_fat_config_8h.html#acc3d779d87b785bb7236b9b3acf7e619',1,'SdFatConfig.h']]], 7 | ['endl_5fcalls_5fflush',['ENDL_CALLS_FLUSH',['../_sd_fat_config_8h.html#a270eefdaec4778f2a491658f34f61b17',1,'ENDL_CALLS_FLUSH(): SdFatConfig.h'],['../_fat_lib_config_8h.html#a270eefdaec4778f2a491658f34f61b17',1,'ENDL_CALLS_FLUSH(): FatLibConfig.h']]], 8 | ['eof',['EOF',['../_stdio_stream_8h.html#a59adc4c82490d23754cd39c2fb99b0da',1,'StdioStream.h']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['f',['F',['../_sys_call_8h.html#a0e3009529aac180ed5f48296d6670d6b',1,'SysCall.h']]], 4 | ['fat12_5fsupport',['FAT12_SUPPORT',['../_sd_fat_config_8h.html#a28998c5daf4bd038f4f93172698320b1',1,'FAT12_SUPPORT(): SdFatConfig.h'],['../_fat_lib_config_8h.html#a28998c5daf4bd038f4f93172698320b1',1,'FAT12_SUPPORT(): FatLibConfig.h']]], 5 | ['file_5fread',['FILE_READ',['../_arduino_files_8h.html#ad52d51659a75e25d96fb04d22ff718cb',1,'ArduinoFiles.h']]], 6 | ['file_5fwrite',['FILE_WRITE',['../_arduino_files_8h.html#ace34e503254fa9004599ddf122264c8f',1,'ArduinoFiles.h']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['implement_5fspi_5fport_5fselection',['IMPLEMENT_SPI_PORT_SELECTION',['../_sd_fat_config_8h.html#aa13678c06fd801cb8f00b497a517d91e',1,'SdFatConfig.h']]], 4 | ['isdirseparator',['isDirSeparator',['../_fat_file_8h.html#a9f85580ad6f1dfc86fff09a58ff0a1c0',1,'FatFile.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['maintain_5ffree_5fcluster_5fcount',['MAINTAIN_FREE_CLUSTER_COUNT',['../_sd_fat_config_8h.html#ac2865dac8fdbb4fff47105db32ddf05b',1,'MAINTAIN_FREE_CLUSTER_COUNT(): SdFatConfig.h'],['../_fat_lib_config_8h.html#ac2865dac8fdbb4fff47105db32ddf05b',1,'MAINTAIN_FREE_CLUSTER_COUNT(): FatLibConfig.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['null',['NULL',['../_stdio_stream_8h.html#a070d2ce7b6bb7e5c05602aa8c308d0c4',1,'StdioStream.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pgm_5fread_5fbyte',['pgm_read_byte',['../_fat_file_8h.html#a48c60b057902adf805797f183286728d',1,'FatFile.h']]], 4 | ['pgm_5fread_5fword',['pgm_read_word',['../_fat_file_8h.html#a910fb5f01313d339d3b835d45e1e5ad0',1,'FatFile.h']]], 5 | ['progmem',['PROGMEM',['../_fat_file_8h.html#a75acaba9e781937468d0911423bc0c35',1,'FatFile.h']]], 6 | ['pstr',['PSTR',['../_fat_file_8h.html#a9c00057fd19e916cc1aa0a5949336beb',1,'FatFile.h']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['sd_5ffat_5fversion',['SD_FAT_VERSION',['../_sd_fat_8h.html#aca25ecce379f446043bdee2c55304210',1,'SdFat.h']]], 4 | ['sd_5fhas_5fcustom_5fspi',['SD_HAS_CUSTOM_SPI',['../_sd_fat_config_8h.html#a838861a01379e94361148d22e62b1977',1,'SdFatConfig.h']]], 5 | ['seek_5fcur',['SEEK_CUR',['../_stdio_stream_8h.html#a4c8d0b76b470ba65a43ca46a88320f39',1,'StdioStream.h']]], 6 | ['seek_5fend',['SEEK_END',['../_stdio_stream_8h.html#ad2a2e6c114780c3071efd24f16c7f7d8',1,'StdioStream.h']]], 7 | ['seek_5fset',['SEEK_SET',['../_stdio_stream_8h.html#a0d112bae8fd35be772185b6ec6bcbe64',1,'StdioStream.h']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/defines_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['wdt_5fyield_5ftime_5fmicros',['WDT_YIELD_TIME_MICROS',['../_sd_fat_config_8h.html#a4e8a928d86c50c91c0bfc9a442373e14',1,'SdFatConfig.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enums_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enums_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['seekdir',['seekdir',['../classios__base.html#ab01103ba35f6ba93a704b3ec0c86191e',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enumvalues_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enumvalues_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['beg',['beg',['../classios__base.html#ab01103ba35f6ba93a704b3ec0c86191ea6639b4dd9e9b57ffef4a176cd1a1e7bb',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enumvalues_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enumvalues_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cur',['cur',['../classios__base.html#ab01103ba35f6ba93a704b3ec0c86191ea53910041525b9e2f33bfc3bb4482134c',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enumvalues_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/enumvalues_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['end',['end',['../classios__base.html#ab01103ba35f6ba93a704b3ec0c86191eaae47c0ae984e90b38907783a1a804811',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arduinofiles_2eh',['ArduinoFiles.h',['../_arduino_files_8h.html',1,'']]], 4 | ['arduinostream_2eh',['ArduinoStream.h',['../_arduino_stream_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['blockdriver_2eh',['BlockDriver.h',['../_block_driver_8h.html',1,'']]], 4 | ['bufstream_2eh',['bufstream.h',['../bufstream_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fatfile_2eh',['FatFile.h',['../_fat_file_8h.html',1,'']]], 4 | ['fatfilesystem_2eh',['FatFileSystem.h',['../_fat_file_system_8h.html',1,'']]], 5 | ['fatlibconfig_2eh',['FatLibConfig.h',['../_fat_lib_config_8h.html',1,'']]], 6 | ['fatstructs_2eh',['FatStructs.h',['../_fat_structs_8h.html',1,'']]], 7 | ['fatvolume_2eh',['FatVolume.h',['../_fat_volume_8h.html',1,'']]], 8 | ['freestack_2eh',['FreeStack.h',['../_free_stack_8h.html',1,'']]], 9 | ['fstream_2eh',['fstream.h',['../fstream_8h.html',1,'']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ios_2eh',['ios.h',['../ios_8h.html',1,'']]], 4 | ['iostream_2eh',['iostream.h',['../iostream_8h.html',1,'']]], 5 | ['istream_2eh',['istream.h',['../istream_8h.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['minimumserial_2eh',['MinimumSerial.h',['../_minimum_serial_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ostream_2eh',['ostream.h',['../ostream_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/files_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['sdfat_2eh',['SdFat.h',['../_sd_fat_8h.html',1,'']]], 4 | ['sdfatconfig_2eh',['SdFatConfig.h',['../_sd_fat_config_8h.html',1,'']]], 5 | ['sdspicard_2eh',['SdSpiCard.h',['../_sd_spi_card_8h.html',1,'']]], 6 | ['stdiostream_2eh',['StdioStream.h',['../_stdio_stream_8h.html',1,'']]], 7 | ['syscall_2eh',['SysCall.h',['../_sys_call_8h.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arduinoinstream',['ArduinoInStream',['../class_arduino_in_stream.html#a61ee22a5824849ec3261ee2f814dfb93',1,'ArduinoInStream']]], 4 | ['arduinooutstream',['ArduinoOutStream',['../class_arduino_out_stream.html#a228b667f9f53dc91c6ed7735d34f04a8',1,'ArduinoOutStream']]], 5 | ['available',['available',['../class_minimum_serial.html#a2abe4370989968938b5dc4872d51c3df',1,'MinimumSerial::available()'],['../class_print_file.html#a600592235b2bee6bdb3a9701d0d6eee3',1,'PrintFile::available()'],['../class_file.html#acf613c4e75bae85f543b30e701ebcc44',1,'File::available()'],['../class_fat_file.html#ac1fa779d98db7ffdb96f8019ab0060d6',1,'FatFile::available()']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tellg',['tellg',['../classistream.html#a18332bdcb7fbe33ca06045c786cac4c3',1,'istream']]], 4 | ['tellp',['tellp',['../classostream.html#a92dec0e2bc8352df1419d1cdc434e619',1,'ostream']]], 5 | ['timestamp',['timestamp',['../class_fat_file.html#aa53a8d1d2467ad9af7d61cbf8ee85243',1,'FatFile::timestamp(FatFile *file)'],['../class_fat_file.html#a56dabdf73833b7e961c4530eb8e16d23',1,'FatFile::timestamp(uint8_t flags, uint16_t year, uint8_t month, uint8_t day, uint8_t hour, uint8_t minute, uint8_t second)']]], 6 | ['truncate',['truncate',['../class_fat_file.html#aa6e663098a578635d37d92e82d18d616',1,'FatFile::truncate()'],['../class_fat_file_system.html#ad60cb13557f35578f868e03e9ccb8be1',1,'FatFileSystem::truncate()']]], 7 | ['type',['type',['../class_sdio_card.html#a2151106a93280ae41bab654428214661',1,'SdioCard::type()'],['../class_sd_spi_card.html#a061d92bf154a1863a6321385b7505f6e',1,'SdSpiCard::type()']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_11.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ungetc',['ungetc',['../class_stdio_stream.html#ac00e0dd906c2e857ece53794c6c92786',1,'StdioStream']]], 4 | ['unsetf',['unsetf',['../classios__base.html#a3bf7d054a433ed15e8b984e16f630fa4',1,'ios_base']]], 5 | ['uppercase',['uppercase',['../ios_8h.html#af5d5e1a0effa1b500bb882feed5a2061',1,'ios.h']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_12.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['vol',['vol',['../class_fat_file_system.html#a4ca68fe47bb675df0a80df1ed7a53698',1,'FatFileSystem']]], 4 | ['volume',['volume',['../class_fat_file.html#a3c64bd8a9abb9a6461d4addb405614df',1,'FatFile']]], 5 | ['volumeblockcount',['volumeBlockCount',['../class_fat_volume.html#a07bc98088ce4a9c725700899c184f7fc',1,'FatVolume']]], 6 | ['vwd',['vwd',['../class_fat_file_system.html#acf257d02b7166683bda2abc5058004bf',1,'FatFileSystem']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['yield',['yield',['../class_sys_call.html#a2219ba5ea8e411b022a3a00df5f380e0',1,'SysCall']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['halt',['halt',['../class_sys_call.html#a9b1ef8900e97f572ca561760b4dd4191',1,'SysCall']]], 4 | ['hex',['hex',['../ios_8h.html#ace2036d970905192360d622140bfe336',1,'ios.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['mkdir',['mkdir',['../class_fat_file.html#abab5b9f72cc796388dd4eed01d13d90d',1,'FatFile::mkdir()'],['../class_fat_file_system.html#a231c62c98ba8ac3c2624dc5ad2053ebf',1,'FatFileSystem::mkdir()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['name',['name',['../class_file.html#a7ca23d8d3997c10c221977c64736f575',1,'File']]], 4 | ['noboolalpha',['noboolalpha',['../ios_8h.html#aa6a1ec04992fc8090ca775a39678be01',1,'ios.h']]], 5 | ['noshowbase',['noshowbase',['../ios_8h.html#ab861ff5f863de0ae002b65390dde36b0',1,'ios.h']]], 6 | ['noshowpoint',['noshowpoint',['../ios_8h.html#ad85399d1b75151cf9e2436f2a1ccfc13',1,'ios.h']]], 7 | ['noshowpos',['noshowpos',['../ios_8h.html#a985805b22ffb4ce2f5298168662bd2d7',1,'ios.h']]], 8 | ['noskipws',['noskipws',['../ios_8h.html#a773b847300db776fde08a0b562792131',1,'ios.h']]], 9 | ['nouppercase',['nouppercase',['../ios_8h.html#a24b96fb317e056b34aa84c4bb965a79a',1,'ios.h']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/functions_f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/search/mag_sel.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/pages_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arduino_20_25sdfat_20library',['Arduino %SdFat Library',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/search/search_l.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/search/search_m.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/search/search_r.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = 2 | { 3 | 0: "_abcdefghijlmnoprstuvwy", 4 | 1: "abcdfilmops", 5 | 2: "abfimos", 6 | 3: "abcdefghilmnoprstuvwy", 7 | 4: "_abcdefghijlmnoprstuvw", 8 | 5: "bdfilmops", 9 | 6: "s", 10 | 7: "bce", 11 | 8: "defimnpsuw", 12 | 9: "a" 13 | }; 14 | 15 | var indexSectionNames = 16 | { 17 | 0: "all", 18 | 1: "classes", 19 | 2: "files", 20 | 3: "functions", 21 | 4: "variables", 22 | 5: "typedefs", 23 | 6: "enums", 24 | 7: "enumvalues", 25 | 8: "defines", 26 | 9: "pages" 27 | }; 28 | 29 | var indexSectionLabels = 30 | { 31 | 0: "All", 32 | 1: "Classes", 33 | 2: "Files", 34 | 3: "Functions", 35 | 4: "Variables", 36 | 5: "Typedefs", 37 | 6: "Enumerations", 38 | 7: "Enumerator", 39 | 8: "Macros", 40 | 9: "Pages" 41 | }; 42 | 43 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['blockdriver',['BlockDriver',['../_block_driver_8h.html#ace97f2377acdc471a01f9f7ec1fd6bbb',1,'BlockDriver.h']]], 4 | ['bpb_5ft',['bpb_t',['../_fat_structs_8h.html#a5c8af240713e05e7e6c959006ced35fb',1,'FatStructs.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dir_5ft',['dir_t',['../_fat_structs_8h.html#a803db59d4e16a0c54a647afc6a7954e3',1,'FatStructs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fat32_5fboot_5ft',['fat32_boot_t',['../_fat_structs_8h.html#a38fa081d004647a828095d31b07ec491',1,'FatStructs.h']]], 4 | ['fat32_5ffsinfo_5ft',['fat32_fsinfo_t',['../_fat_structs_8h.html#a6030ed0fce3a819326a2548407fc8556',1,'FatStructs.h']]], 5 | ['fat_5fboot_5ft',['fat_boot_t',['../_fat_structs_8h.html#aedac4595ee08198da26c14b9891a07d5',1,'FatStructs.h']]], 6 | ['fmtflags',['fmtflags',['../classios__base.html#ac9a54e52cef4f01ac0afd8ae896a3413',1,'ios_base']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['iostate',['iostate',['../classios__base.html#aef19291eeae0f072ac42c6ba1fe3033c',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ldir_5ft',['ldir_t',['../_fat_structs_8h.html#aa1b540ee1eedd1aa9b267d11cba0d9e2',1,'FatStructs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['mbr_5ft',['mbr_t',['../_fat_structs_8h.html#a7c429e5097f101c8c97663d6c4155bd9',1,'FatStructs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['off_5ftype',['off_type',['../classios__base.html#a45de7cca0d01da781f4b886179c65c22',1,'ios_base']]], 4 | ['openmode',['openmode',['../classios__base.html#aaa192ec0dccc43050715553a34644523',1,'ios_base']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['part_5ft',['part_t',['../_fat_structs_8h.html#a37251e7d5c69a159be727a3fc8c9d0e6',1,'FatStructs.h']]], 4 | ['pos_5ftype',['pos_type',['../classios__base.html#abe85cf1f181b8bce8022f05ab76aae7f',1,'ios_base']]], 5 | ['print_5ft',['print_t',['../_fat_volume_8h.html#ac62f6449331cfe1a71f29be30efe7890',1,'FatVolume.h']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/typedefs_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['streamsize',['streamsize',['../classios__base.html#a82836e1d3cc603fba8f0b54d323a2dff',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['_5f_5fbrkval',['__brkval',['../_free_stack_8h.html#ad193a2cc121e0d4614a1c21eb463fb56',1,'FreeStack.h']]], 4 | ['_5f_5fbss_5fend',['__bss_end',['../_free_stack_8h.html#adbad17f740c2d7f2bc4833681c93c932',1,'FreeStack.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['adjustfield',['adjustfield',['../classios__base.html#adaaf735381254aa096ebe3605e8bbd0a',1,'ios_base']]], 4 | ['app',['app',['../classios__base.html#a8380aac3c405730708888fdc68905820',1,'ios_base']]], 5 | ['ate',['ate',['../classios__base.html#aa434355c165500065276d955d8b36e99',1,'ios_base']]], 6 | ['attr',['attr',['../structlong_directory_entry.html#aa36bf1210d0c2b3b80948e5f697eb02e',1,'longDirectoryEntry']]], 7 | ['attributes',['attributes',['../structdirectory_entry.html#a16c6cde55c8175c90935c386f1cfb21a',1,'directoryEntry']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ungetc_5fbuf_5fsize',['UNGETC_BUF_SIZE',['../_stdio_stream_8h.html#a785dd413c0d7b05f95df82d3453ecacd',1,'StdioStream.h']]], 4 | ['uppercase',['uppercase',['../classios__base.html#ade3db1fe3249e87f4c47a9a8916793d9',1,'ios_base']]], 5 | ['usuallyzero',['usuallyZero',['../structmaster_boot_record.html#afacfc863e98f64053cd9459c6dec948f',1,'masterBootRecord']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['volumelabel',['volumeLabel',['../structfat__boot.html#a9ee733f1b1abc0210ec8f9676bba2218',1,'fat_boot::volumeLabel()'],['../structfat32__boot.html#a8e6349f46344145a7320637a58107b3b',1,'fat32_boot::volumeLabel()']]], 4 | ['volumeserialnumber',['volumeSerialNumber',['../structfat__boot.html#ac05e88a0d27f0340ba008834361d2b20',1,'fat_boot::volumeSerialNumber()'],['../structfat32__boot.html#a20768678da224faefd8acf12cabdbfb8',1,'fat32_boot::volumeSerialNumber()']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['w',['w',['../structsetw.html#ab48d915a24d3f3365c9eb76e138a6f4e',1,'setw']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['endcylinderhigh',['endCylinderHigh',['../structpartition_table.html#a32fea225b8ffd925ad919ffc56e9abda',1,'partitionTable']]], 4 | ['endcylinderlow',['endCylinderLow',['../structpartition_table.html#ad7829e34be70084abe145227b0d18274',1,'partitionTable']]], 5 | ['endhead',['endHead',['../structpartition_table.html#a4a3945bfd3a29f474984cb9f180dbd51',1,'partitionTable']]], 6 | ['endsector',['endSector',['../structpartition_table.html#a27cdc4320c418ed0d833ab163ed77ad7',1,'partitionTable']]], 7 | ['eofbit',['eofbit',['../classios__base.html#af75072b7ef2a931c77a2cb8e7ccda460',1,'ios_base']]], 8 | ['extended_5fboot_5fsig',['EXTENDED_BOOT_SIG',['../_fat_structs_8h.html#aefadfae26e4cc8d57c1ff727a9d1cd20',1,'FatStructs.h']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['goodbit',['goodbit',['../classios__base.html#a07a00996a6e525b88bdfe7935d5ead05',1,'ios_base']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['headcount',['headCount',['../structbios_parm_block.html#a2324ca82e2a7da4d91f458fa32a6e239',1,'biosParmBlock::headCount()'],['../structfat__boot.html#ae31da876cd9f48de5268a129218df2c2',1,'fat_boot::headCount()'],['../structfat32__boot.html#a1a5298db692526bc64243766d6b54181',1,'fat32_boot::headCount()']]], 4 | ['hex',['hex',['../classios__base.html#a3608e51eb0a80ea94ddadd5b713a3750',1,'ios_base']]], 5 | ['hidddensectors',['hidddenSectors',['../structbios_parm_block.html#a9413199be8525190d40589f60c22bcab',1,'biosParmBlock::hidddenSectors()'],['../structfat__boot.html#a18f1b4c245fe7bd09f5a9430c005e23a',1,'fat_boot::hidddenSectors()'],['../structfat32__boot.html#ab10224aa4bba42b262fcd3479e279e1f',1,'fat32_boot::hidddenSectors()']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['in',['in',['../classios__base.html#ae5432e3c269064480652c4602f5f74ad',1,'ios_base']]], 4 | ['internal',['internal',['../classios__base.html#afc720b7f6f461ec8e9cf5505059e5d7c',1,'ios_base']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jump',['jump',['../structfat__boot.html#a83f9f2d1d0130f25f34c90dfc82e3751',1,'fat_boot::jump()'],['../structfat32__boot.html#a2d93fc193a64ecffbd71ead207fe4810',1,'fat32_boot::jump()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['mbr',['mbr',['../unioncache__t.html#a6ac10bfb1ebb1139c448456679663bb6',1,'cache_t']]], 4 | ['mbrsig0',['mbrSig0',['../structmaster_boot_record.html#a42b0b413ecb21ac5314d4f6bca05308f',1,'masterBootRecord']]], 5 | ['mbrsig1',['mbrSig1',['../structmaster_boot_record.html#aafbbcb4f6a2d1181c6458d4c9603df4f',1,'masterBootRecord']]], 6 | ['mediatype',['mediaType',['../structbios_parm_block.html#a4237e7c3ba247516d546c149954e5042',1,'biosParmBlock::mediaType()'],['../structfat__boot.html#a63eaf7185663369af2527309634d3c90',1,'fat_boot::mediaType()'],['../structfat32__boot.html#a3b1ab5d2dc872c0d80cd4f34622de417',1,'fat32_boot::mediaType()']]], 7 | ['mustbezero',['mustBeZero',['../structlong_directory_entry.html#af3055930e869875e49b32ef0b49c3649',1,'longDirectoryEntry']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['name',['name',['../structdirectory_entry.html#a05dc993ea55a1a742de5970541a31ecb',1,'directoryEntry']]], 4 | ['name1',['name1',['../structlong_directory_entry.html#a629f1ca5ba2ccce6cac5295578b6e7b4',1,'longDirectoryEntry']]], 5 | ['name2',['name2',['../structlong_directory_entry.html#ad763b5a3da4b8d326d9888493fbb819a',1,'longDirectoryEntry']]], 6 | ['name3',['name3',['../structlong_directory_entry.html#a6f14c81b7d224dc4431217f92601257a',1,'longDirectoryEntry']]], 7 | ['nextfree',['nextFree',['../structfat32__fsinfo.html#a539b3bb0a2ead9df417df9ac8b6b1606',1,'fat32_fsinfo']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['oct',['oct',['../classios__base.html#a4155540f8d3ffdb8d25a2f50ee4df08f',1,'ios_base']]], 4 | ['oemid',['oemId',['../structfat__boot.html#adc034212201e879fea1eb44db43e55a5',1,'fat_boot::oemId()'],['../structfat32__boot.html#af623a473a960ea20904dce0edfb6bb9d',1,'fat32_boot::oemId()']]], 5 | ['ord',['ord',['../structlong_directory_entry.html#a1b65e85dd63d0708cd1b875ce4e5e338',1,'longDirectoryEntry']]], 6 | ['out',['out',['../classios__base.html#a4c1d517774c0d11af3424e90395f26ae',1,'ios_base']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/search/variables_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['p',['p',['../structsetprecision.html#a7cb7bb355a303fa39a8035615bde9348',1,'setprecision']]], 4 | ['part',['part',['../structmaster_boot_record.html#aa4e294e50f311635c10c92f4c99227c5',1,'masterBootRecord']]], 5 | ['position',['position',['../struct_fat_pos__t.html#a8e14c6f2705777502b543452743eaa26',1,'FatPos_t']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/splitbar.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/structmaster_boot_record__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/structmaster_boot_record__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/sync_off.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/sync_on.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/tab_a.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/tab_b.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/tab_h.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/tab_s.png -------------------------------------------------------------------------------- /libraries/SdFat/extras/html/unioncache__t__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyDiGirolamo/lua-teensyduino/2f051330ed8ff6cf3345a5021af4d2f72295edb7/libraries/SdFat/extras/html/unioncache__t__coll__graph.png -------------------------------------------------------------------------------- /libraries/SdFat/library.properties: -------------------------------------------------------------------------------- 1 | name=SdFat 2 | version=1.0.7 3 | author=Bill Greiman 4 | maintainer=Bill Greiman 5 | sentence=FAT16/FAT32 file system for SD cards. 6 | paragraph=FAT16/FAT32 file system for SD cards. 7 | category=Data Storage 8 | url=https://github.com/greiman/SdFat 9 | architectures=* 10 | -------------------------------------------------------------------------------- /libraries/SdFat/src/SpiDriver/boards/BobuinoGpioPinMap.h: -------------------------------------------------------------------------------- 1 | #ifndef BobuinoGpioPinMap_h 2 | #define BobuinoGpioPinMap_h 3 | static const GpioPinMap_t GpioPinMap[] = { 4 | GPIO_PIN(B, 0), // D0 5 | GPIO_PIN(B, 1), // D1 6 | GPIO_PIN(B, 2), // D2 7 | GPIO_PIN(B, 3), // D3 8 | GPIO_PIN(B, 4), // D4 9 | GPIO_PIN(B, 5), // D5 10 | GPIO_PIN(B, 6), // D6 11 | GPIO_PIN(B, 7), // D7 12 | GPIO_PIN(D, 0), // D8 13 | GPIO_PIN(D, 1), // D9 14 | GPIO_PIN(D, 2), // D10 15 | GPIO_PIN(D, 3), // D11 16 | GPIO_PIN(D, 4), // D12 17 | GPIO_PIN(D, 5), // D13 18 | GPIO_PIN(D, 6), // D14 19 | GPIO_PIN(D, 7), // D15 20 | GPIO_PIN(C, 0), // D16 21 | GPIO_PIN(C, 1), // D17 22 | GPIO_PIN(C, 2), // D18 23 | GPIO_PIN(C, 3), // D19 24 | GPIO_PIN(C, 4), // D20 25 | GPIO_PIN(C, 5), // D21 26 | GPIO_PIN(C, 6), // D22 27 | GPIO_PIN(C, 7), // D23 28 | GPIO_PIN(A, 0), // D24 29 | GPIO_PIN(A, 1), // D25 30 | GPIO_PIN(A, 2), // D26 31 | GPIO_PIN(A, 3), // D27 32 | GPIO_PIN(A, 4), // D28 33 | GPIO_PIN(A, 5), // D29 34 | GPIO_PIN(A, 6), // D30 35 | GPIO_PIN(A, 7) // D31 36 | }; 37 | #endif // BobuinoGpioPinMap_h -------------------------------------------------------------------------------- /libraries/SdFat/src/SpiDriver/boards/LeonardoGpioPinMap.h: -------------------------------------------------------------------------------- 1 | #ifndef LeonardoGpioPinMap_h 2 | #define LeonardoGpioPinMap_h 3 | static const GpioPinMap_t GpioPinMap[] = { 4 | GPIO_PIN(D, 2), // D0 5 | GPIO_PIN(D, 3), // D1 6 | GPIO_PIN(D, 1), // D2 7 | GPIO_PIN(D, 0), // D3 8 | GPIO_PIN(D, 4), // D4 9 | GPIO_PIN(C, 6), // D5 10 | GPIO_PIN(D, 7), // D6 11 | GPIO_PIN(E, 6), // D7 12 | GPIO_PIN(B, 4), // D8 13 | GPIO_PIN(B, 5), // D9 14 | GPIO_PIN(B, 6), // D10 15 | GPIO_PIN(B, 7), // D11 16 | GPIO_PIN(D, 6), // D12 17 | GPIO_PIN(C, 7), // D13 18 | GPIO_PIN(B, 3), // D14 19 | GPIO_PIN(B, 1), // D15 20 | GPIO_PIN(B, 2), // D16 21 | GPIO_PIN(B, 0), // D17 22 | GPIO_PIN(F, 7), // D18 23 | GPIO_PIN(F, 6), // D19 24 | GPIO_PIN(F, 5), // D20 25 | GPIO_PIN(F, 4), // D21 26 | GPIO_PIN(F, 1), // D22 27 | GPIO_PIN(F, 0), // D23 28 | GPIO_PIN(D, 4), // D24 29 | GPIO_PIN(D, 7), // D25 30 | GPIO_PIN(B, 4), // D26 31 | GPIO_PIN(B, 5), // D27 32 | GPIO_PIN(B, 6), // D28 33 | GPIO_PIN(D, 6) // D29 34 | }; 35 | #endif // LeonardoGpioPinMap_h 36 | -------------------------------------------------------------------------------- /libraries/SdFat/src/SpiDriver/boards/Teensy2GpioPinMap.h: -------------------------------------------------------------------------------- 1 | #ifndef Teensy2GpioPinMap_h 2 | #define Teensy2GpioPinMap_h 3 | static const GpioPinMap_t GpioPinMap[] = { 4 | GPIO_PIN(B, 0), // D0 5 | GPIO_PIN(B, 1), // D1 6 | GPIO_PIN(B, 2), // D2 7 | GPIO_PIN(B, 3), // D3 8 | GPIO_PIN(B, 7), // D4 9 | GPIO_PIN(D, 0), // D5 10 | GPIO_PIN(D, 1), // D6 11 | GPIO_PIN(D, 2), // D7 12 | GPIO_PIN(D, 3), // D8 13 | GPIO_PIN(C, 6), // D9 14 | GPIO_PIN(C, 7), // D10 15 | GPIO_PIN(D, 6), // D11 16 | GPIO_PIN(D, 7), // D12 17 | GPIO_PIN(B, 4), // D13 18 | GPIO_PIN(B, 5), // D14 19 | GPIO_PIN(B, 6), // D15 20 | GPIO_PIN(F, 7), // D16 21 | GPIO_PIN(F, 6), // D17 22 | GPIO_PIN(F, 5), // D18 23 | GPIO_PIN(F, 4), // D19 24 | GPIO_PIN(F, 1), // D20 25 | GPIO_PIN(F, 0), // D21 26 | GPIO_PIN(D, 4), // D22 27 | GPIO_PIN(D, 5), // D23 28 | GPIO_PIN(E, 6), // D24 29 | }; 30 | #endif // Teensy2GpioPinMap_h 31 | -------------------------------------------------------------------------------- /libraries/SdFat/src/SpiDriver/boards/UnoGpioPinMap.h: -------------------------------------------------------------------------------- 1 | #ifndef UnoGpioPinMap_h 2 | #define UnoGpioPinMap_h 3 | static const GpioPinMap_t GpioPinMap[] = { 4 | GPIO_PIN(D, 0), // D0 5 | GPIO_PIN(D, 1), // D1 6 | GPIO_PIN(D, 2), // D2 7 | GPIO_PIN(D, 3), // D3 8 | GPIO_PIN(D, 4), // D4 9 | GPIO_PIN(D, 5), // D5 10 | GPIO_PIN(D, 6), // D6 11 | GPIO_PIN(D, 7), // D7 12 | GPIO_PIN(B, 0), // D8 13 | GPIO_PIN(B, 1), // D9 14 | GPIO_PIN(B, 2), // D10 15 | GPIO_PIN(B, 3), // D11 16 | GPIO_PIN(B, 4), // D12 17 | GPIO_PIN(B, 5), // D13 18 | GPIO_PIN(C, 0), // D14 19 | GPIO_PIN(C, 1), // D15 20 | GPIO_PIN(C, 2), // D16 21 | GPIO_PIN(C, 3), // D17 22 | GPIO_PIN(C, 4), // D18 23 | GPIO_PIN(C, 5) // D19 24 | }; 25 | #endif // UnoGpioPinMap_h -------------------------------------------------------------------------------- /libraries/lua/lapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** Auxiliary functions from Lua API 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lapi_h 8 | #define lapi_h 9 | 10 | 11 | #include "lobject.h" 12 | 13 | 14 | LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /libraries/lua/lrotable.h: -------------------------------------------------------------------------------- 1 | // Read-only tables for Lua 2 | 3 | #ifndef lrotable_h 4 | #define lrotable_h 5 | 6 | #include "lua.h" 7 | #include "llimits.h" 8 | #include "lauxlib.h" 9 | 10 | typedef lua_Number luaR_result; 11 | 12 | // A number entry in the read only table 13 | typedef struct 14 | { 15 | const char *name; 16 | lua_Number value; 17 | } luaR_value_entry; 18 | 19 | // A mapping between table name and its entries 20 | typedef struct 21 | { 22 | const char *name; 23 | const luaL_reg *pfuncs; 24 | const luaR_value_entry *pvalues; 25 | } luaR_table; 26 | 27 | luaR_result luaR_findglobal(const char *key, lu_byte *ptype); 28 | int luaR_findfunction(lua_State *L, const luaL_reg *ptable); 29 | luaR_result luaR_findentry(void *data, const char *key, lu_byte *ptype); 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /libraries/lua/lstring.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lstring.h,v 1.43.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** String table (keep all strings handled by Lua) 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lstring_h 8 | #define lstring_h 9 | 10 | 11 | #include "lgc.h" 12 | #include "lobject.h" 13 | #include "lstate.h" 14 | 15 | 16 | #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) 17 | 18 | #define sizeudata(u) (sizeof(union Udata)+(u)->len) 19 | 20 | #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s))) 21 | #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ 22 | (sizeof(s)/sizeof(char))-1)) 23 | 24 | #define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT) 25 | 26 | LUAI_FUNC void luaS_resize (lua_State *L, int newsize); 27 | LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, Table *e); 28 | LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l); 29 | 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /libraries/lua/lundump.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lundump.h,v 1.37.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** load precompiled Lua chunks 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lundump_h 8 | #define lundump_h 9 | 10 | #include "lobject.h" 11 | #include "lzio.h" 12 | 13 | /* load one chunk; from lundump.c */ 14 | LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); 15 | 16 | /* make header; from lundump.c */ 17 | LUAI_FUNC void luaU_header (char* h); 18 | 19 | /* dump one chunk; from ldump.c */ 20 | LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); 21 | 22 | #ifdef luac_c 23 | /* print one chunk; from print.c */ 24 | LUAI_FUNC void luaU_print (const Proto* f, int full); 25 | #endif 26 | 27 | /* for header of binary files -- this is Lua 5.1 */ 28 | #define LUAC_VERSION 0x51 29 | 30 | /* for header of binary files -- this is the official format */ 31 | #define LUAC_FORMAT 0 32 | 33 | /* size of header of binary files */ 34 | #define LUAC_HEADERSIZE 12 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /lua-teensy/sdwrapper.h: -------------------------------------------------------------------------------- 1 | #ifndef SDWRAPPER_H 2 | #define SDWRAPPER_H 3 | 4 | #include "SdFat.h" 5 | 6 | #include "Arduino.h" 7 | 8 | #include "lauxlib.h" 9 | #include "lua.h" 10 | #include "lualib.h" 11 | 12 | int sd_ls(lua_State *L); 13 | int sd_cat(lua_State *L); 14 | int sd_run(lua_State *L); 15 | 16 | static const luaL_Reg sd_functions[] = { 17 | {"ls", sd_ls}, 18 | {"cat", sd_cat}, 19 | {"run", sd_run}, 20 | {NULL, NULL} 21 | }; 22 | 23 | #endif 24 | --------------------------------------------------------------------------------