Ver código fonte

Fix comments on EXPERIMENTAL_I2CBUS

Scott Lahteine 9 anos atrás
pai
commit
40cd20a236

+ 5
- 5
Marlin/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/Cartesio/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/Felix/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/Hephestos/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/Hephestos_2/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/K8200/Configuration_adv.h Ver arquivo

@@ -709,9 +709,9 @@ const unsigned int dropsegments = 2; //everything with less than this number of
709 709
  * devices on the bus.
710 710
  *
711 711
  * ; Example #1
712
- * ; This macro send the string "Marlin" to the slave device with address 0x63
712
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
713 713
  * ; It uses multiple M155 commands with one B<base 10> arg
714
- * M155 A63  ; Target slave address
714
+ * M155 A99  ; Target slave address
715 715
  * M155 B77  ; M
716 716
  * M155 B97  ; a
717 717
  * M155 B114 ; r
@@ -721,12 +721,12 @@ const unsigned int dropsegments = 2; //everything with less than this number of
721 721
  * M155 S1   ; Send the current buffer
722 722
  *
723 723
  * ; Example #2
724
- * ; Request 6 bytes from slave device with address 0x63
725
- * M156 A63 B5
724
+ * ; Request 6 bytes from slave device with address 0x63 (99)
725
+ * M156 A99 B5
726 726
  *
727 727
  * ; Example #3
728 728
  * ; Example serial output of a M156 request
729
- * echo:i2c-reply: from:63 bytes:5 data:hello
729
+ * echo:i2c-reply: from:99 bytes:5 data:hello
730 730
  */
731 731
 
732 732
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/RigidBot/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/SCARA/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/TAZ4/Configuration_adv.h Ver arquivo

@@ -711,9 +711,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
711 711
  * devices on the bus.
712 712
  *
713 713
  * ; Example #1
714
- * ; This macro send the string "Marlin" to the slave device with address 0x63
714
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
715 715
  * ; It uses multiple M155 commands with one B<base 10> arg
716
- * M155 A63  ; Target slave address
716
+ * M155 A99  ; Target slave address
717 717
  * M155 B77  ; M
718 718
  * M155 B97  ; a
719 719
  * M155 B114 ; r
@@ -723,12 +723,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
723 723
  * M155 S1   ; Send the current buffer
724 724
  *
725 725
  * ; Example #2
726
- * ; Request 6 bytes from slave device with address 0x63
727
- * M156 A63 B5
726
+ * ; Request 6 bytes from slave device with address 0x63 (99)
727
+ * M156 A99 B5
728 728
  *
729 729
  * ; Example #3
730 730
  * ; Example serial output of a M156 request
731
- * echo:i2c-reply: from:63 bytes:5 data:hello
731
+ * echo:i2c-reply: from:99 bytes:5 data:hello
732 732
  */
733 733
 
734 734
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/WITBOX/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/delta/biv2.5/Configuration_adv.h Ver arquivo

@@ -705,9 +705,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
705 705
  * devices on the bus.
706 706
  *
707 707
  * ; Example #1
708
- * ; This macro send the string "Marlin" to the slave device with address 0x63
708
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
709 709
  * ; It uses multiple M155 commands with one B<base 10> arg
710
- * M155 A63  ; Target slave address
710
+ * M155 A99  ; Target slave address
711 711
  * M155 B77  ; M
712 712
  * M155 B97  ; a
713 713
  * M155 B114 ; r
@@ -717,12 +717,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
717 717
  * M155 S1   ; Send the current buffer
718 718
  *
719 719
  * ; Example #2
720
- * ; Request 6 bytes from slave device with address 0x63
721
- * M156 A63 B5
720
+ * ; Request 6 bytes from slave device with address 0x63 (99)
721
+ * M156 A99 B5
722 722
  *
723 723
  * ; Example #3
724 724
  * ; Example serial output of a M156 request
725
- * echo:i2c-reply: from:63 bytes:5 data:hello
725
+ * echo:i2c-reply: from:99 bytes:5 data:hello
726 726
  */
727 727
 
728 728
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/delta/generic/Configuration_adv.h Ver arquivo

@@ -705,9 +705,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
705 705
  * devices on the bus.
706 706
  *
707 707
  * ; Example #1
708
- * ; This macro send the string "Marlin" to the slave device with address 0x63
708
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
709 709
  * ; It uses multiple M155 commands with one B<base 10> arg
710
- * M155 A63  ; Target slave address
710
+ * M155 A99  ; Target slave address
711 711
  * M155 B77  ; M
712 712
  * M155 B97  ; a
713 713
  * M155 B114 ; r
@@ -717,12 +717,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
717 717
  * M155 S1   ; Send the current buffer
718 718
  *
719 719
  * ; Example #2
720
- * ; Request 6 bytes from slave device with address 0x63
721
- * M156 A63 B5
720
+ * ; Request 6 bytes from slave device with address 0x63 (99)
721
+ * M156 A99 B5
722 722
  *
723 723
  * ; Example #3
724 724
  * ; Example serial output of a M156 request
725
- * echo:i2c-reply: from:63 bytes:5 data:hello
725
+ * echo:i2c-reply: from:99 bytes:5 data:hello
726 726
  */
727 727
 
728 728
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h Ver arquivo

@@ -704,9 +704,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
704 704
  * devices on the bus.
705 705
  *
706 706
  * ; Example #1
707
- * ; This macro send the string "Marlin" to the slave device with address 0x63
707
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
708 708
  * ; It uses multiple M155 commands with one B<base 10> arg
709
- * M155 A63  ; Target slave address
709
+ * M155 A99  ; Target slave address
710 710
  * M155 B77  ; M
711 711
  * M155 B97  ; a
712 712
  * M155 B114 ; r
@@ -716,12 +716,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
716 716
  * M155 S1   ; Send the current buffer
717 717
  *
718 718
  * ; Example #2
719
- * ; Request 6 bytes from slave device with address 0x63
720
- * M156 A63 B5
719
+ * ; Request 6 bytes from slave device with address 0x63 (99)
720
+ * M156 A99 B5
721 721
  *
722 722
  * ; Example #3
723 723
  * ; Example serial output of a M156 request
724
- * echo:i2c-reply: from:63 bytes:5 data:hello
724
+ * echo:i2c-reply: from:99 bytes:5 data:hello
725 725
  */
726 726
 
727 727
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h Ver arquivo

@@ -709,9 +709,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
709 709
  * devices on the bus.
710 710
  *
711 711
  * ; Example #1
712
- * ; This macro send the string "Marlin" to the slave device with address 0x63
712
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
713 713
  * ; It uses multiple M155 commands with one B<base 10> arg
714
- * M155 A63  ; Target slave address
714
+ * M155 A99  ; Target slave address
715 715
  * M155 B77  ; M
716 716
  * M155 B97  ; a
717 717
  * M155 B114 ; r
@@ -721,12 +721,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
721 721
  * M155 S1   ; Send the current buffer
722 722
  *
723 723
  * ; Example #2
724
- * ; Request 6 bytes from slave device with address 0x63
725
- * M156 A63 B5
724
+ * ; Request 6 bytes from slave device with address 0x63 (99)
725
+ * M156 A99 B5
726 726
  *
727 727
  * ; Example #3
728 728
  * ; Example serial output of a M156 request
729
- * echo:i2c-reply: from:63 bytes:5 data:hello
729
+ * echo:i2c-reply: from:99 bytes:5 data:hello
730 730
  */
731 731
 
732 732
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h Ver arquivo

@@ -705,9 +705,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
705 705
  * devices on the bus.
706 706
  *
707 707
  * ; Example #1
708
- * ; This macro send the string "Marlin" to the slave device with address 0x63
708
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
709 709
  * ; It uses multiple M155 commands with one B<base 10> arg
710
- * M155 A63  ; Target slave address
710
+ * M155 A99  ; Target slave address
711 711
  * M155 B77  ; M
712 712
  * M155 B97  ; a
713 713
  * M155 B114 ; r
@@ -717,12 +717,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
717 717
  * M155 S1   ; Send the current buffer
718 718
  *
719 719
  * ; Example #2
720
- * ; Request 6 bytes from slave device with address 0x63
721
- * M156 A63 B5
720
+ * ; Request 6 bytes from slave device with address 0x63 (99)
721
+ * M156 A99 B5
722 722
  *
723 723
  * ; Example #3
724 724
  * ; Example serial output of a M156 request
725
- * echo:i2c-reply: from:63 bytes:5 data:hello
725
+ * echo:i2c-reply: from:99 bytes:5 data:hello
726 726
  */
727 727
 
728 728
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/makibox/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

+ 5
- 5
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h Ver arquivo

@@ -703,9 +703,9 @@ const unsigned int dropsegments = 5; //everything with less than this number of
703 703
  * devices on the bus.
704 704
  *
705 705
  * ; Example #1
706
- * ; This macro send the string "Marlin" to the slave device with address 0x63
706
+ * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
707 707
  * ; It uses multiple M155 commands with one B<base 10> arg
708
- * M155 A63  ; Target slave address
708
+ * M155 A99  ; Target slave address
709 709
  * M155 B77  ; M
710 710
  * M155 B97  ; a
711 711
  * M155 B114 ; r
@@ -715,12 +715,12 @@ const unsigned int dropsegments = 5; //everything with less than this number of
715 715
  * M155 S1   ; Send the current buffer
716 716
  *
717 717
  * ; Example #2
718
- * ; Request 6 bytes from slave device with address 0x63
719
- * M156 A63 B5
718
+ * ; Request 6 bytes from slave device with address 0x63 (99)
719
+ * M156 A99 B5
720 720
  *
721 721
  * ; Example #3
722 722
  * ; Example serial output of a M156 request
723
- * echo:i2c-reply: from:63 bytes:5 data:hello
723
+ * echo:i2c-reply: from:99 bytes:5 data:hello
724 724
  */
725 725
 
726 726
 // @section i2cbus

Carregando…
Cancelar
Salvar