Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -raad2e406efd1fc2589a19004eb86ca6277f41aea -r2216ac6ac7f77437a7c29ac8b4043be01bc4609e --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision aad2e406efd1fc2589a19004eb86ca6277f41aea) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 2216ac6ac7f77437a7c29ac8b4043be01bc4609e) @@ -29,7 +29,12 @@ /****** TO BE CONSISTENT, ALWAYS INCLUDE '/' AT THE END OF ALL THE FOLDER/DIR/PATH IN HERE ******/ // USB +#ifdef BUILD_FOR_TARGET const char *USB_Mount_Point = "/media/usb/"; +#else + const char *USB_Mount_Point = "/home/denali/Desktop/USB DISK/"; +#endif + const char *USB_File_System = "vfat"; // SD-CARD @@ -38,7 +43,7 @@ const char *SDCard_Base_Path_Name = "/media/sd-card/"; #else // should not be in the project application folder. [not tracking by git] - const char *SDCard_Base_Path_Name = "/media/denali/USB DISK"; + const char *SDCard_Base_Path_Name = "/media/denali/USB DISK/"; #endif // Settings @@ -60,4 +65,9 @@ // Date and Time const char *Date_Time_Set_Sh = "date_time_set.sh"; + + // Treatment + // Please notice that is the folder not the path + // and it needs to be concatenated after SDCard_Base_Path_Name for each build configuration + const char *Treatment_Log_Folder = "treatments/"; }