M155=>M260, M156=>M261

This commit is contained in:
Scott Lahteine
2016-11-08 16:28:42 -06:00
parent e765eebfb0
commit 75bfde9945
20 changed files with 268 additions and 266 deletions

View File

@ -808,22 +808,22 @@
*
* ; Example #1
* ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
* ; It uses multiple M155 commands with one B<base 10> arg
* M155 A99 ; Target slave address
* M155 B77 ; M
* M155 B97 ; a
* M155 B114 ; r
* M155 B108 ; l
* M155 B105 ; i
* M155 B110 ; n
* M155 S1 ; Send the current buffer
* ; It uses multiple M260 commands with one B<base 10> arg
* M260 A99 ; Target slave address
* M260 B77 ; M
* M260 B97 ; a
* M260 B114 ; r
* M260 B108 ; l
* M260 B105 ; i
* M260 B110 ; n
* M260 S1 ; Send the current buffer
*
* ; Example #2
* ; Request 6 bytes from slave device with address 0x63 (99)
* M156 A99 B5
* M261 A99 B5
*
* ; Example #3
* ; Example serial output of a M156 request
* ; Example serial output of a M261 request
* echo:i2c-reply: from:99 bytes:5 data:hello
*/