/*! * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file StorageGlobals.cpp * \author (last) Behrouz NematiPour * \date (last) 05-Sep-2020 * \author (original) Behrouz NematiPour * \date (original) 26-Aug-2020 * */ #include "StorageGlobals.h" /*! * \brief Storage * \details The container of the constant global variable withing Storage namespace members. * For example it currently includes USB mount root folder and SD Card mount root folder and such, * which is used by Logger, DriveWatcher, ... . */ namespace Storage { // USB const char *USB_Mount_Point = "/media/usb/"; const char *USB_File_System = "vfat"; // Log const char *SDCard_Base_Path_Name = "/media/sd-card/"; }