GM6000 Digital Heater Controller Branch: main
SDX-1330
Private_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Arduino_SdFat_Private_h_
2#define Cpl_Io_File_Arduino_SdFat_Private_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2020 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file defines a global handle to the target's SdFat File system. The
16 target's BSP is RESPONSIBLE for initializing and creating (i.e. calling
17 .begin()) on the file system instance as part of the board initialization
18
19 */
20
21
22#include <SdFat.h>
23
24/// Global handle to the file system
25extern FatFileSystem g_arduino_sdfat_fs;
26
27
28#endif // end header latch
29
FatFileSystem g_arduino_sdfat_fs
Global handle to the file system.