File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 22
22
#define _VERSION_ESP3D_H
23
23
24
24
//version and sources location
25
- #define FW_VERSION "3.0.0.a212 "
25
+ #define FW_VERSION "3.0.0.a213 "
26
26
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
27
27
28
28
#endif //_VERSION_ESP3D_H
Original file line number Diff line number Diff line change @@ -125,18 +125,20 @@ bool ESP_SD::accessFS(uint8_t FS)
125
125
void ESP_SD::releaseFS (uint8_t FS)
126
126
{
127
127
(void )FS;
128
+ log_esp3d (" Release SD" );
129
+ setState (ESP_SDCARD_IDLE);
128
130
#if SD_DEVICE_CONNECTION == ESP_SHARED_SD
131
+ _enabled = false ;
129
132
#if defined (ESP_FLAG_SHARED_SD_PIN) && ESP_FLAG_SHARED_SD_PIN != -1
130
133
log_esp3d (" SD shared disabled PIN %d with %d" , ESP_FLAG_SHARED_SD_PIN, ESP_FLAG_SHARED_SD_VALUE);
131
134
digitalWrite (ESP_FLAG_SHARED_SD_PIN, !ESP_FLAG_SHARED_SD_VALUE);
132
135
#endif // ESP_FLAG_SHARED_SD_PIN
133
136
#if defined (ESP3DLIB_ENV)
134
- log_esp3d (" Release SD" );
137
+ log_esp3d (" Mount SD in Marlin " );
135
138
card.mount ();
136
139
#endif // ESP3DLIB_ENV
137
- _enabled = false ;
138
140
#endif // SD_DEVICE_CONNECTION == ESP_SHARED_SD
139
- setState (ESP_SDCARD_IDLE);
141
+
140
142
}
141
143
142
144
You can’t perform that action at this time.
0 commit comments