luzpaz 3 роки тому
джерело
коміт
b7be62ad36
Аккаунт користувача з таким Email не знайдено

+ 1
- 1
Marlin/src/HAL/STM32F1/onboard_sd.cpp Переглянути файл

278
   if (drv) return STA_NOINIT;                                         // Supports only drive 0
278
   if (drv) return STA_NOINIT;                                         // Supports only drive 0
279
   sd_power_on();                                                      // Initialize SPI
279
   sd_power_on();                                                      // Initialize SPI
280
 
280
 
281
-  if (Stat & STA_NODISK) return Stat;                                 // Is a card existing in the soket?
281
+  if (Stat & STA_NODISK) return Stat;                                 // Is a card existing in the socket?
282
 
282
 
283
   FCLK_SLOW();
283
   FCLK_SLOW();
284
   for (n = 10; n; n--) xchg_spi(0xFF);                                // Send 80 dummy clocks
284
   for (n = 10; n; n--) xchg_spi(0xFF);                                // Send 80 dummy clocks

+ 3
- 3
Marlin/src/lcd/e3v2/enhanced/dwinui.cpp Переглянути файл

93
   }
93
   }
94
 }
94
 }
95
 
95
 
96
-// Get font character heigh
96
+// Get font character height
97
 uint8_t DWINUI::fontHeight(uint8_t cfont) {
97
 uint8_t DWINUI::fontHeight(uint8_t cfont) {
98
   switch (cfont) {
98
   switch (cfont) {
99
     case font6x12 : return 12;
99
     case font6x12 : return 12;
110
   }
110
   }
111
 }
111
 }
112
 
112
 
113
-// Get screen x coodinates from text column
113
+// Get screen x coordinates from text column
114
 uint16_t DWINUI::ColToX(uint8_t col) {
114
 uint16_t DWINUI::ColToX(uint8_t col) {
115
   return col * fontWidth(font);
115
   return col * fontWidth(font);
116
 }
116
 }
117
 
117
 
118
-// Get screen y coodinates from text row
118
+// Get screen y coordinates from text row
119
 uint16_t DWINUI::RowToY(uint8_t row) {
119
 uint16_t DWINUI::RowToY(uint8_t row) {
120
   return row * fontHeight(font);
120
   return row * fontHeight(font);
121
 }
121
 }

+ 3
- 3
Marlin/src/lcd/e3v2/enhanced/dwinui.h Переглянути файл

198
   // Get font character width
198
   // Get font character width
199
   uint8_t fontWidth(uint8_t cfont);
199
   uint8_t fontWidth(uint8_t cfont);
200
 
200
 
201
-  // Get font character heigh
201
+  // Get font character height
202
   uint8_t fontHeight(uint8_t cfont);
202
   uint8_t fontHeight(uint8_t cfont);
203
 
203
 
204
-  // Get screen x coodinates from text column
204
+  // Get screen x coordinates from text column
205
   uint16_t ColToX(uint8_t col);
205
   uint16_t ColToX(uint8_t col);
206
 
206
 
207
-  // Get screen y coodinates from text row
207
+  // Get screen y coordinates from text row
208
   uint16_t RowToY(uint8_t row);
208
   uint16_t RowToY(uint8_t row);
209
 
209
 
210
   // Set text/number color
210
   // Set text/number color

+ 1
- 1
Marlin/src/lcd/e3v2/jyersui/dwin.cpp Переглянути файл

4135
   switch (popupid) {
4135
   switch (popupid) {
4136
     case Pause:         Draw_Popup(F("Pause Print"), F(""), F(""), Popup); break;
4136
     case Pause:         Draw_Popup(F("Pause Print"), F(""), F(""), Popup); break;
4137
     case Stop:          Draw_Popup(F("Stop Print"), F(""), F(""), Popup); break;
4137
     case Stop:          Draw_Popup(F("Stop Print"), F(""), F(""), Popup); break;
4138
-    case Resume:        Draw_Popup(F("Resume Print?"), F("Looks Like the last"), F("print was interupted."), Popup); break;
4138
+    case Resume:        Draw_Popup(F("Resume Print?"), F("Looks Like the last"), F("print was interrupted."), Popup); break;
4139
     case ConfFilChange: Draw_Popup(F("Confirm Filament Change"), F(""), F(""), Popup); break;
4139
     case ConfFilChange: Draw_Popup(F("Confirm Filament Change"), F(""), F(""), Popup); break;
4140
     case PurgeMore:     Draw_Popup(F("Purge more filament?"), F("(Cancel to finish process)"), F(""), Popup); break;
4140
     case PurgeMore:     Draw_Popup(F("Purge more filament?"), F("(Cancel to finish process)"), F(""), Popup); break;
4141
     case SaveLevel:     Draw_Popup(F("Leveling Complete"), F("Save to EEPROM?"), F(""), Popup); break;
4141
     case SaveLevel:     Draw_Popup(F("Leveling Complete"), F("Save to EEPROM?"), F(""), Popup); break;

+ 1
- 1
Marlin/src/lcd/extui/dgus_reloaded/DGUSDisplay.h Переглянути файл

96
   static size_t GetFreeTxBuffer();
96
   static size_t GetFreeTxBuffer();
97
   static void FlushTx();
97
   static void FlushTx();
98
 
98
 
99
-  // Checks two things: Can we confirm the presence of the display and has we initiliazed it.
99
+  // Checks two things: Can we confirm the presence of the display and has we initialized it.
100
   // (both boils down that the display answered to our chatting)
100
   // (both boils down that the display answered to our chatting)
101
   static inline bool IsInitialized() {
101
   static inline bool IsInitialized() {
102
     return initialized;
102
     return initialized;

+ 1
- 1
Marlin/src/pins/stm32f4/pins_RUMBA32_BTT.h Переглянути файл

22
 #pragma once
22
 #pragma once
23
 
23
 
24
 /**
24
 /**
25
- * No offical schematics have been found.
25
+ * No official schematics have been found.
26
  * But these differences where noted in https://github.com/bigtreetech/Rumba32/issues/1
26
  * But these differences where noted in https://github.com/bigtreetech/Rumba32/issues/1
27
  */
27
  */
28
 
28
 

Завантаження…
Відмінити
Зберегти