Browse Source

Cleanup configurations

Scott Lahteine 7 years ago
parent
commit
7db805930a

+ 1
- 1
Marlin/Configuration.h View File

@@ -534,7 +534,7 @@
534 534
  * ===========================================================================
535 535
  * ============================= Z Probe Options =============================
536 536
  * ===========================================================================
537
- *    @section probes
537
+ * @section probes
538 538
  *
539 539
  *
540 540
  *   Probe Type

+ 22
- 19
Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h View File

@@ -293,6 +293,7 @@
293 293
 #define HEATER_1_MAXTEMP 245
294 294
 #define HEATER_2_MAXTEMP 245
295 295
 #define HEATER_3_MAXTEMP 245
296
+#define HEATER_4_MAXTEMP 245
296 297
 #define BED_MAXTEMP 115
297 298
 
298 299
 //===========================================================================
@@ -322,6 +323,11 @@
322 323
   #define  DEFAULT_Ki 0.50
323 324
   #define  DEFAULT_Kd 60.00
324 325
 
326
+  // Ultimaker
327
+  //#define  DEFAULT_Kp 22.2
328
+  //#define  DEFAULT_Ki 1.08
329
+  //#define  DEFAULT_Kd 114
330
+
325 331
   // MakerGear
326 332
   //#define  DEFAULT_Kp 7.0
327 333
   //#define  DEFAULT_Ki 0.1
@@ -562,7 +568,6 @@
562 568
  */
563 569
 //#define FIX_MOUNTED_PROBE
564 570
 
565
-
566 571
 /**
567 572
  *   Z Servo Probe, such as an endstop switch on a rotating arm.
568 573
  *   NUM_SERVOS also needs to be set.  This is found later in this file.  Set it to
@@ -578,7 +583,7 @@
578 583
  *   with the possible exception of Z_ENDSTOP_SERVO_NR.
579 584
  */
580 585
 //#define BLTOUCH
581
-//#define BLTOUCH_DELAY 375   // (ms) Enable and increase if needed
586
+//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
582 587
 //#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event
583 588
 
584 589
 /**
@@ -601,7 +606,7 @@
601 606
 
602 607
 // Enable if you have a Z probe mounted on a sled like those designed by Charles Bell.
603 608
 //#define Z_PROBE_SLED
604
-//#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
609
+//#define SLED_DOCKING_OFFSET 5  // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
605 610
 
606 611
 /**
607 612
  *   Z Probe to nozzle (X,Y) offset, relative to (0, 0).
@@ -630,8 +635,10 @@
630 635
 #define XY_PROBE_SPEED 7500
631 636
 // Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
632 637
 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
638
+
633 639
 // Speed for the "accurate" probe of each point
634 640
 #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
641
+
635 642
 // Use double touch for probing
636 643
 //#define PROBE_DOUBLE_TOUCH
637 644
 
@@ -693,7 +700,6 @@
693 700
  */
694 701
 
695 702
 //#define Z_MIN_PROBE_ENDSTOP
696
-
697 703
 #define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
698 704
 
699 705
 // Enable Z Probe Repeatability test to see how accurate your probe is
@@ -770,7 +776,6 @@
770 776
 #define Y_HOME_DIR -1
771 777
 #define Z_HOME_DIR -1
772 778
 
773
-
774 779
 // @section machine
775 780
 
776 781
 // Travel limits after homing (units are in mm)
@@ -803,7 +808,6 @@
803 808
 //===========================================================================
804 809
 //=============================== Bed Leveling ==============================
805 810
 //===========================================================================
806
-
807 811
 // @section bedlevel
808 812
 
809 813
 /**
@@ -850,7 +854,6 @@
850 854
 #define AUTO_BED_LEVELING_UBL
851 855
 //#define MESH_BED_LEVELING
852 856
 
853
-
854 857
 /**
855 858
  * Enable detailed logging of G28, G29, M48, etc.
856 859
  * Turn on with the command 'M111 S32'.
@@ -901,7 +904,6 @@
901 904
 
902 905
   // 3 arbitrary points to probe.
903 906
   // A simple cross-product is used to estimate the plane of the bed.
904
-
905 907
   #define ABL_PROBE_PT_1_X 39
906 908
   #define ABL_PROBE_PT_1_Y 170
907 909
   #define ABL_PROBE_PT_2_X 39
@@ -917,16 +919,17 @@
917 919
   //========================= Unified Bed Leveling ============================
918 920
   //===========================================================================
919 921
 
920
-    #define UBL_MESH_INSET 1         // Mesh inset margin on print area
921
-    #define GRID_MAX_POINTS_X 10     // Don't use more than 15 points per axis, implementation limited.
922
-    #define GRID_MAX_POINTS_Y 10
923
-    #define UBL_PROBE_PT_1_X 45    // These set the probe locations for when UBL does a 3-Point leveling
924
-    #define UBL_PROBE_PT_1_Y 170   // of the mesh.
925
-    #define UBL_PROBE_PT_2_X 45
926
-    #define UBL_PROBE_PT_2_Y 25
927
-    #define UBL_PROBE_PT_3_X 180
928
-    #define UBL_PROBE_PT_3_Y 25
929
-    #define UBL_G26_MESH_EDITING     // Enable G26 mesh editing
922
+  #define UBL_MESH_INSET 1          // Mesh inset margin on print area
923
+  #define GRID_MAX_POINTS_X 10      // Don't use more than 15 points per axis, implementation limited.
924
+  #define GRID_MAX_POINTS_Y 10
925
+  #define UBL_PROBE_PT_1_X 45       // These set the probe locations for when UBL does a 3-Point leveling
926
+  #define UBL_PROBE_PT_1_Y 170      // of the mesh.
927
+  #define UBL_PROBE_PT_2_X 45
928
+  #define UBL_PROBE_PT_2_Y 25
929
+  #define UBL_PROBE_PT_3_X 180
930
+  #define UBL_PROBE_PT_3_Y 25
931
+  #define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
932
+
930 933
 #elif ENABLED(MESH_BED_LEVELING)
931 934
 
932 935
   //===========================================================================
@@ -1606,7 +1609,7 @@
1606 1609
  */
1607 1610
 //#define FILAMENT_WIDTH_SENSOR
1608 1611
 
1609
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75  //Enter the diameter (in mm) of the filament generally used (3.0 mm or 1.75 mm) - this is then used in the slicer software.  Used for sensor reading validation
1612
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1610 1613
 
1611 1614
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1612 1615
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)

+ 4
- 8
Marlin/example_configurations/FolgerTech-i3-2020/Configuration_adv.h View File

@@ -327,7 +327,7 @@
327 327
   // Default x offset in duplication mode (typically set to half print bed width)
328 328
   #define DEFAULT_DUPLICATION_X_OFFSET 100
329 329
 
330
-#endif //DUAL_X_CARRIAGE
330
+#endif // DUAL_X_CARRIAGE
331 331
 
332 332
 // Activate a solenoid on the active extruder with M380. Disable all with M381.
333 333
 // Define SOL0_PIN, SOL1_PIN, etc., for each extruder that has a solenoid.
@@ -419,7 +419,6 @@
419 419
  *    M909, M910 & LCD - only PRINTRBOARD_REVF & RIGIDBOARD_V2
420 420
  */
421 421
 //#define PWM_MOTOR_CURRENT {1300, 1300, 1250} // Values in milliamps
422
-
423 422
 //#define DIGIPOT_MOTOR_CURRENT {135,135,135,135,135} // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
424 423
 //#define DAC_MOTOR_CURRENT_DEFAULT { 70, 80, 90, 80 } // Default drive percent - X, Y, Z, E axis
425 424
 
@@ -587,10 +586,9 @@
587 586
  */
588 587
 #define BABYSTEPPING
589 588
 #if ENABLED(BABYSTEPPING)
590
-  #define BABYSTEP_XY  //not only z, but also XY in the menu. more clutter, more functions
591
-                       //not implemented for deltabots!
592
-  #define BABYSTEP_INVERT_Z false  //true for inverse movements in Z
593
-  #define BABYSTEP_MULTIPLICATOR 2 //faster movements
589
+  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
590
+  #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
591
+  #define BABYSTEP_MULTIPLICATOR 2 // Babysteps are very small. Increase for faster motion.
594 592
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
595 593
   #define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping.
596 594
   #define DOUBLECLICK_MAX_INTERVAL 1250 // Maximum interval between clicks, in milliseconds.
@@ -1034,7 +1032,6 @@
1034 1032
  * (https://github.com/ameyer/Arduino-L6470)
1035 1033
  */
1036 1034
 
1037
-
1038 1035
 //#define HAVE_L6470DRIVER
1039 1036
 #if ENABLED(HAVE_L6470DRIVER)
1040 1037
 
@@ -1155,7 +1152,6 @@
1155 1152
  */
1156 1153
 //#define EXTENDED_CAPABILITIES_REPORT
1157 1154
 
1158
-
1159 1155
 /**
1160 1156
  * Volumetric extrusion default state
1161 1157
  * Activate to make volumetric extrusion the default method,

+ 17
- 19
Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h View File

@@ -130,7 +130,7 @@
130 130
 // The following define selects which electronics board you have.
131 131
 // Please choose the name from boards.h that matches your setup
132 132
 #ifndef MOTHERBOARD
133
-//#define MOTHERBOARD BOARD_RAMPS_14_EEF
133
+  //#define MOTHERBOARD BOARD_RAMPS_14_EEF
134 134
   #define MOTHERBOARD BOARD_RAMPS_14_EFB       // gMax users please note:  This is a Roxy modification.   I print on glass and
135 135
                                                // I use Marlin to control the bed's temperature.  So, if you have a single nozzle
136 136
                                                // machine, this will work fine for you.  You just set the
@@ -327,14 +327,14 @@
327 327
   // If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
328 328
 
329 329
   // gMax J-Head
330
-    #define  DEFAULT_Kp 15.35
331
-    #define  DEFAULT_Ki 0.85
332
-    #define  DEFAULT_Kd 69.45
330
+  #define  DEFAULT_Kp 15.35
331
+  #define  DEFAULT_Ki 0.85
332
+  #define  DEFAULT_Kd 69.45
333 333
 
334 334
   // Ultimaker
335
-//  #define  DEFAULT_Kp 22.2
336
-//  #define  DEFAULT_Ki 1.08
337
-//  #define  DEFAULT_Kd 114
335
+  //#define  DEFAULT_Kp 22.2
336
+  //#define  DEFAULT_Ki 1.08
337
+  //#define  DEFAULT_Kd 114
338 338
 
339 339
   // MakerGear
340 340
   //#define  DEFAULT_Kp 7.0
@@ -474,7 +474,7 @@
474 474
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
475 475
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
476 476
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
477
-#define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
477
+#define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
478 478
 
479 479
 // Enable this feature if all enabled endstop pins are interrupt-capable.
480 480
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
@@ -548,7 +548,7 @@
548 548
  * ===========================================================================
549 549
  * ============================= Z Probe Options =============================
550 550
  * ===========================================================================
551
- *    @section probes
551
+ * @section probes
552 552
  *
553 553
  *
554 554
  *   Probe Type
@@ -730,8 +730,6 @@
730 730
 #define Z_CLEARANCE_DEPLOY_PROBE   15 // Z Clearance for Deploy/Stow
731 731
 #define Z_CLEARANCE_BETWEEN_PROBES  6 // Z Clearance between probe points
732 732
 
733
-//
734
-
735 733
 // For M851 give a range for adjusting the Z probe offset
736 734
 #define Z_PROBE_OFFSET_RANGE_MIN -20
737 735
 #define Z_PROBE_OFFSET_RANGE_MAX 20
@@ -792,9 +790,9 @@
792 790
 #define X_MIN_POS 0
793 791
 #define Y_MIN_POS 0
794 792
 #define Z_MIN_POS 0
795
-#define X_MAX_POS 420		// These numbers are not accurate for an unaltered gMax 1.5+ printer.  My print bed
796
-#define Y_MAX_POS 420		// is inset a noticable amount from the edge of the bed.  Combined with the inset,
797
-                                // the nozzle can reach all cordinates of the mesh.
793
+#define X_MAX_POS 420   // These numbers are not accurate for an unaltered gMax 1.5+ printer.  My print bed
794
+#define Y_MAX_POS 420   // is inset a noticable amount from the edge of the bed.  Combined with the inset,
795
+                        // the nozzle can reach all cordinates of the mesh.
798 796
 #define Z_MAX_POS 500
799 797
 
800 798
 // If enabled, axes won't move below MIN_POS in response to movement commands.
@@ -994,8 +992,8 @@
994 992
 #define Z_SAFE_HOMING
995 993
 
996 994
 #if ENABLED(Z_SAFE_HOMING)
997
-  #define Z_SAFE_HOMING_X_POINT (((X_MIN_POS+X_MAX_POS)/2)-4) // X point for Z homing when homing all axis (G28).
998
-  #define Z_SAFE_HOMING_Y_POINT (((Y_MIN_POS+Y_MAX_POS)/2)+4) // Y point for Z homing when homing all axis (G28).
995
+  #define Z_SAFE_HOMING_X_POINT (((X_MIN_POS + X_MAX_POS) / 2) - 4) // X point for Z homing when homing all axis (G28).
996
+  #define Z_SAFE_HOMING_Y_POINT (((Y_MIN_POS + Y_MAX_POS) / 2) + 4) // Y point for Z homing when homing all axis (G28).
999 997
 #endif
1000 998
 
1001 999
 // Homing speeds (mm/m)
@@ -1035,7 +1033,7 @@
1035 1033
 //
1036 1034
 // M100 Free Memory Watcher
1037 1035
 //
1038
-#define M100_FREE_MEMORY_WATCHER // uncomment to add the M100 Free Memory Watcher for debug purpose
1036
+//#define M100_FREE_MEMORY_WATCHER // uncomment to add the M100 Free Memory Watcher for debug purpose
1039 1037
 
1040 1038
 //
1041 1039
 // G20/G21 Inch mode support
@@ -1619,7 +1617,7 @@
1619 1617
  */
1620 1618
 //#define FILAMENT_WIDTH_SENSOR
1621 1619
 
1622
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75  //Enter the diameter (in mm) of the filament generally used (3.0 mm or 1.75 mm) - this is then used in the slicer software.  Used for sensor reading validation
1620
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1623 1621
 
1624 1622
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1625 1623
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
@@ -1633,6 +1631,6 @@
1633 1631
 
1634 1632
   // Display filament width on the LCD status line. Status messages will expire after 5 seconds.
1635 1633
   //#define FILAMENT_LCD_DISPLAY
1636
-#endif //FILAMENT_WIDTH_SENSOR
1634
+#endif
1637 1635
 
1638 1636
 #endif // CONFIGURATION_H

+ 1
- 1
Marlin/example_configurations/gCreate_gMax1.5+/Configuration_adv.h View File

@@ -361,7 +361,7 @@
361 361
 // Default stepper release if idle. Set to 0 to deactivate.
362 362
 // Steppers will shut down DEFAULT_STEPPER_DEACTIVE_TIME seconds after the last move when DISABLE_INACTIVE_? is true.
363 363
 // Time can be set by M18 and M84.
364
-#define DEFAULT_STEPPER_DEACTIVE_TIME 0    // usually is set to 120 seconds
364
+#define DEFAULT_STEPPER_DEACTIVE_TIME 0    // usually set to 120 seconds
365 365
 #define DISABLE_INACTIVE_X true
366 366
 #define DISABLE_INACTIVE_Y true
367 367
 #define DISABLE_INACTIVE_Z true  // set to false if the nozzle will fall down on your printed part when print has finished.

+ 64
- 66
Marlin/example_configurations/gCreate_gMax1.5+/_Bootscreen.h View File

@@ -39,72 +39,70 @@
39 39
 
40 40
 // Width: 112, Height: 64
41 41
 const unsigned char custom_start_bmp[896] PROGMEM = {
42
-	0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43
-	0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
44
-	0x80, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
45
-	0x80, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
46
-	0x80, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
47
-	0x80, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
48
-	0x80, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
49
-	0x80, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
50
-	0x80, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
51
-	0x80, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x01,
52
-	0x80, 0x00, 0x00, 0x01, 0xf9, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x01, 0xc0, 0x01,
53
-	0x80, 0x00, 0x00, 0x06, 0x4d, 0x00, 0x00, 0x07, 0x38, 0x00, 0x00, 0x01, 0xc0, 0x01,
54
-	0x80, 0x00, 0x00, 0x0c, 0x26, 0x00, 0x0e, 0xe7, 0x39, 0xd3, 0xe1, 0xf3, 0xe7, 0xc1,
55
-	0x80, 0x00, 0x00, 0x19, 0x12, 0x00, 0x0f, 0xe7, 0x39, 0xf7, 0xf3, 0xfb, 0xef, 0xe1,
56
-	0x80, 0x00, 0x00, 0x37, 0xce, 0x00, 0x0e, 0xe7, 0x01, 0xf7, 0x73, 0xb9, 0xce, 0xe1,
57
-	0x80, 0x00, 0x00, 0x64, 0x66, 0x00, 0x0e, 0xe7, 0x01, 0xc7, 0xf3, 0xb9, 0xcf, 0xe1,
58
-	0x80, 0x00, 0x00, 0x4b, 0xa6, 0x00, 0x0e, 0xe7, 0x39, 0xc7, 0xf0, 0xf9, 0xcf, 0xe1,
59
-	0x80, 0x00, 0x00, 0xca, 0xb4, 0x00, 0x0f, 0xe7, 0x39, 0xc7, 0x03, 0xf9, 0xce, 0x01,
60
-	0x80, 0x00, 0x00, 0xcd, 0xa4, 0x00, 0x06, 0xe7, 0x39, 0xc7, 0x73, 0xb9, 0xce, 0xe1,
61
-	0x80, 0x00, 0x03, 0xa6, 0x6c, 0x00, 0x00, 0xe7, 0x39, 0xc7, 0x73, 0xb9, 0xce, 0xe1,
62
-	0x80, 0x00, 0xff, 0x13, 0xd8, 0x00, 0x0e, 0xe3, 0xf1, 0xc7, 0xf3, 0xf9, 0xef, 0xe1,
63
-	0x80, 0x01, 0x21, 0x88, 0x18, 0x00, 0x0f, 0xe1, 0xe1, 0xc3, 0xe1, 0xb9, 0xe7, 0xc1,
64
-	0x80, 0x06, 0x61, 0x16, 0x30, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
65
-	0x80, 0x04, 0x41, 0x23, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
66
-	0x80, 0x04, 0xfe, 0x41, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
67
-	0x80, 0x0b, 0x86, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x1f, 0x80, 0x00, 0x00, 0x01,
68
-	0x80, 0x1e, 0x01, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x1f, 0x80, 0x00, 0x00, 0x01,
69
-	0x80, 0x1c, 0x07, 0x22, 0x00, 0x00, 0x07, 0xbc, 0x3f, 0x9f, 0x81, 0xf8, 0xf1, 0xe1,
70
-	0x80, 0x08, 0x1f, 0xe2, 0x00, 0x00, 0x0f, 0xfc, 0x3f, 0xbf, 0x87, 0xfe, 0x71, 0xc1,
71
-	0x80, 0x00, 0x33, 0x62, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xb7, 0x87, 0x9e, 0x7b, 0xc1,
72
-	0x80, 0x00, 0xc2, 0x22, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xb7, 0x87, 0x9e, 0x7b, 0xc1,
73
-	0x80, 0x00, 0xc2, 0x3e, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xf7, 0x80, 0x7e, 0x3b, 0x81,
74
-	0x80, 0x01, 0xe6, 0x1e, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xf7, 0x83, 0xfe, 0x3f, 0x81,
75
-	0x80, 0x01, 0x3c, 0x12, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xf7, 0x87, 0x9e, 0x3b, 0x81,
76
-	0x80, 0x01, 0x1c, 0x26, 0x00, 0x00, 0x0f, 0xfc, 0x3d, 0xf7, 0x87, 0x9e, 0x7b, 0xc1,
77
-	0x80, 0x01, 0x70, 0x64, 0x00, 0x00, 0x07, 0xbc, 0x3c, 0xe7, 0x87, 0x9e, 0x7b, 0xc1,
78
-	0x80, 0x03, 0xc0, 0x58, 0x00, 0x00, 0x00, 0x3c, 0x3c, 0xe7, 0x87, 0xfe, 0x71, 0xc1,
79
-	0x80, 0x0d, 0x80, 0xf0, 0x00, 0x00, 0x0f, 0x3c, 0x3c, 0xe7, 0x83, 0xde, 0xf1, 0xe1,
80
-	0x80, 0x1a, 0x00, 0xe0, 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
81
-	0x80, 0x26, 0x00, 0x40, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
82
-	0x80, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
83
-	0x80, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
42
+  0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
43
+  0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
44
+  0x80, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
45
+  0x80, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
46
+  0x80, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
47
+  0x80, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
48
+  0x80, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
49
+  0x80, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
50
+  0x80, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
51
+  0x80, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x01,
52
+  0x80, 0x00, 0x00, 0x01, 0xf9, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x01, 0xc0, 0x01,
53
+  0x80, 0x00, 0x00, 0x06, 0x4d, 0x00, 0x00, 0x07, 0x38, 0x00, 0x00, 0x01, 0xc0, 0x01,
54
+  0x80, 0x00, 0x00, 0x0c, 0x26, 0x00, 0x0e, 0xe7, 0x39, 0xd3, 0xe1, 0xf3, 0xe7, 0xc1,
55
+  0x80, 0x00, 0x00, 0x19, 0x12, 0x00, 0x0f, 0xe7, 0x39, 0xf7, 0xf3, 0xfb, 0xef, 0xe1,
56
+  0x80, 0x00, 0x00, 0x37, 0xce, 0x00, 0x0e, 0xe7, 0x01, 0xf7, 0x73, 0xb9, 0xce, 0xe1,
57
+  0x80, 0x00, 0x00, 0x64, 0x66, 0x00, 0x0e, 0xe7, 0x01, 0xc7, 0xf3, 0xb9, 0xcf, 0xe1,
58
+  0x80, 0x00, 0x00, 0x4b, 0xa6, 0x00, 0x0e, 0xe7, 0x39, 0xc7, 0xf0, 0xf9, 0xcf, 0xe1,
59
+  0x80, 0x00, 0x00, 0xca, 0xb4, 0x00, 0x0f, 0xe7, 0x39, 0xc7, 0x03, 0xf9, 0xce, 0x01,
60
+  0x80, 0x00, 0x00, 0xcd, 0xa4, 0x00, 0x06, 0xe7, 0x39, 0xc7, 0x73, 0xb9, 0xce, 0xe1,
61
+  0x80, 0x00, 0x03, 0xa6, 0x6c, 0x00, 0x00, 0xe7, 0x39, 0xc7, 0x73, 0xb9, 0xce, 0xe1,
62
+  0x80, 0x00, 0xff, 0x13, 0xd8, 0x00, 0x0e, 0xe3, 0xf1, 0xc7, 0xf3, 0xf9, 0xef, 0xe1,
63
+  0x80, 0x01, 0x21, 0x88, 0x18, 0x00, 0x0f, 0xe1, 0xe1, 0xc3, 0xe1, 0xb9, 0xe7, 0xc1,
64
+  0x80, 0x06, 0x61, 0x16, 0x30, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
65
+  0x80, 0x04, 0x41, 0x23, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
66
+  0x80, 0x04, 0xfe, 0x41, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
67
+  0x80, 0x0b, 0x86, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x1f, 0x80, 0x00, 0x00, 0x01,
68
+  0x80, 0x1e, 0x01, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x1f, 0x80, 0x00, 0x00, 0x01,
69
+  0x80, 0x1c, 0x07, 0x22, 0x00, 0x00, 0x07, 0xbc, 0x3f, 0x9f, 0x81, 0xf8, 0xf1, 0xe1,
70
+  0x80, 0x08, 0x1f, 0xe2, 0x00, 0x00, 0x0f, 0xfc, 0x3f, 0xbf, 0x87, 0xfe, 0x71, 0xc1,
71
+  0x80, 0x00, 0x33, 0x62, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xb7, 0x87, 0x9e, 0x7b, 0xc1,
72
+  0x80, 0x00, 0xc2, 0x22, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xb7, 0x87, 0x9e, 0x7b, 0xc1,
73
+  0x80, 0x00, 0xc2, 0x3e, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xf7, 0x80, 0x7e, 0x3b, 0x81,
74
+  0x80, 0x01, 0xe6, 0x1e, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xf7, 0x83, 0xfe, 0x3f, 0x81,
75
+  0x80, 0x01, 0x3c, 0x12, 0x00, 0x00, 0x0f, 0x3c, 0x3d, 0xf7, 0x87, 0x9e, 0x3b, 0x81,
76
+  0x80, 0x01, 0x1c, 0x26, 0x00, 0x00, 0x0f, 0xfc, 0x3d, 0xf7, 0x87, 0x9e, 0x7b, 0xc1,
77
+  0x80, 0x01, 0x70, 0x64, 0x00, 0x00, 0x07, 0xbc, 0x3c, 0xe7, 0x87, 0x9e, 0x7b, 0xc1,
78
+  0x80, 0x03, 0xc0, 0x58, 0x00, 0x00, 0x00, 0x3c, 0x3c, 0xe7, 0x87, 0xfe, 0x71, 0xc1,
79
+  0x80, 0x0d, 0x80, 0xf0, 0x00, 0x00, 0x0f, 0x3c, 0x3c, 0xe7, 0x83, 0xde, 0xf1, 0xe1,
80
+  0x80, 0x1a, 0x00, 0xe0, 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
81
+  0x80, 0x26, 0x00, 0x40, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
82
+  0x80, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
83
+  0x80, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
84 84
 
85
-	0x81, 0x06, 0x00, 0x00, 0x00, 0x00, 0x07, 0x1c, 0x03, 0xc0, 0x20, 0x10, 0x00, 0x01,
86
-	0x83, 0x24, 0x00, 0x00, 0x00, 0x00, 0x08, 0x92, 0x02, 0x20, 0x00, 0x10, 0x00, 0x01,
87
-	0x02, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x02, 0x23, 0x27, 0x39, 0x8c, 0xe1,
88
-	0x06, 0x38, 0x00, 0x00, 0x00, 0x00, 0x03, 0x11, 0x03, 0xc2, 0x24, 0x92, 0x49, 0x01,
89
-	0x04, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x02, 0x02, 0x24, 0x93, 0xc8, 0xc1,
90
-	0x0d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x08, 0x92, 0x02, 0x02, 0x24, 0x92, 0x08, 0x21,
91
-	0x08, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x07, 0x1c, 0x02, 0x02, 0x24, 0x99, 0xc9, 0xc1,
92
-	0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
85
+  0x81, 0x06, 0x00, 0x00, 0x00, 0x00, 0x07, 0x1c, 0x03, 0xc0, 0x20, 0x10, 0x00, 0x01,
86
+  0x83, 0x24, 0x00, 0x00, 0x00, 0x00, 0x08, 0x92, 0x02, 0x20, 0x00, 0x10, 0x00, 0x01,
87
+  0x02, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x02, 0x23, 0x27, 0x39, 0x8c, 0xe1,
88
+  0x06, 0x38, 0x00, 0x00, 0x00, 0x00, 0x03, 0x11, 0x03, 0xc2, 0x24, 0x92, 0x49, 0x01,
89
+  0x04, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x02, 0x02, 0x24, 0x93, 0xc8, 0xc1,
90
+  0x0d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x08, 0x92, 0x02, 0x02, 0x24, 0x92, 0x08, 0x21,
91
+  0x08, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x07, 0x1c, 0x02, 0x02, 0x24, 0x99, 0xc9, 0xc1,
92
+  0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
93 93
 
94
-	0x10, 0x30, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x0f, 0xe0, 0x0f, 0x00, 0x01,
95
-	0x30, 0x20, 0x00, 0x37, 0x00, 0x00, 0x00, 0x12, 0x24, 0x08, 0x10, 0x09, 0x00, 0x01,
96
-	0x20, 0x30, 0x00, 0x6d, 0x80, 0x00, 0x00, 0x12, 0x24, 0x09, 0x88, 0x09, 0x00, 0x01,
97
-	0x10, 0x18, 0x1f, 0x60, 0xc0, 0x00, 0x00, 0x12, 0x24, 0x09, 0x48, 0x09, 0x00, 0x01,
98
-	0x30, 0x0c, 0x39, 0xe0, 0x60, 0x00, 0x00, 0x12, 0x24, 0x09, 0x90, 0x09, 0x00, 0x01,
99
-	0x30, 0x07, 0x90, 0x70, 0x60, 0x00, 0x00, 0x12, 0x24, 0x08, 0x60, 0x09, 0x00, 0x01,
100
-	0x10, 0x16, 0xf0, 0x18, 0x20, 0x00, 0x00, 0x12, 0x24, 0x08, 0x10, 0x09, 0x00, 0x01,
101
-	0x1a, 0x10, 0x60, 0x08, 0x30, 0x00, 0x00, 0x12, 0x24, 0x09, 0xc8, 0x09, 0x00, 0x01,
102
-	0x0b, 0x09, 0x80, 0x00, 0x30, 0x00, 0x00, 0x12, 0x24, 0x09, 0x24, 0x09, 0x00, 0x01,
103
-	0x0e, 0x07, 0x80, 0x00, 0x10, 0x00, 0x00, 0x13, 0xe4, 0x89, 0xc4, 0x89, 0xf9, 0x01,
104
-	0x06, 0x1e, 0x40, 0x10, 0x10, 0x00, 0x00, 0x10, 0x05, 0xc8, 0x09, 0xc8, 0x0b, 0x81,
105
-	0x06, 0x00, 0x40, 0x20, 0x10, 0x00, 0x00, 0x0f, 0xf8, 0x8f, 0xf0, 0x8f, 0xf9, 0x01,
106
-	0x03, 0x80, 0x00, 0x20, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
107
-	0x01, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
94
+  0x10, 0x30, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x0f, 0xe0, 0x0f, 0x00, 0x01,
95
+  0x30, 0x20, 0x00, 0x37, 0x00, 0x00, 0x00, 0x12, 0x24, 0x08, 0x10, 0x09, 0x00, 0x01,
96
+  0x20, 0x30, 0x00, 0x6d, 0x80, 0x00, 0x00, 0x12, 0x24, 0x09, 0x88, 0x09, 0x00, 0x01,
97
+  0x10, 0x18, 0x1f, 0x60, 0xc0, 0x00, 0x00, 0x12, 0x24, 0x09, 0x48, 0x09, 0x00, 0x01,
98
+  0x30, 0x0c, 0x39, 0xe0, 0x60, 0x00, 0x00, 0x12, 0x24, 0x09, 0x90, 0x09, 0x00, 0x01,
99
+  0x30, 0x07, 0x90, 0x70, 0x60, 0x00, 0x00, 0x12, 0x24, 0x08, 0x60, 0x09, 0x00, 0x01,
100
+  0x10, 0x16, 0xf0, 0x18, 0x20, 0x00, 0x00, 0x12, 0x24, 0x08, 0x10, 0x09, 0x00, 0x01,
101
+  0x1a, 0x10, 0x60, 0x08, 0x30, 0x00, 0x00, 0x12, 0x24, 0x09, 0xc8, 0x09, 0x00, 0x01,
102
+  0x0b, 0x09, 0x80, 0x00, 0x30, 0x00, 0x00, 0x12, 0x24, 0x09, 0x24, 0x09, 0x00, 0x01,
103
+  0x0e, 0x07, 0x80, 0x00, 0x10, 0x00, 0x00, 0x13, 0xe4, 0x89, 0xc4, 0x89, 0xf9, 0x01,
104
+  0x06, 0x1e, 0x40, 0x10, 0x10, 0x00, 0x00, 0x10, 0x05, 0xc8, 0x09, 0xc8, 0x0b, 0x81,
105
+  0x06, 0x00, 0x40, 0x20, 0x10, 0x00, 0x00, 0x0f, 0xf8, 0x8f, 0xf0, 0x8f, 0xf9, 0x01,
106
+  0x03, 0x80, 0x00, 0x20, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
107
+  0x01, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
108 108
 };
109
-
110
-

Loading…
Cancel
Save