Advertisement
silver2row

Configuration.h on Marlin

Nov 15th, 2020
1,227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.79 KB | None | 0 0
  1.  * :[-1, 0, 1, 2, 3, 4, 5, 6, 7]
  2.  */
  3. #define SERIAL_PORT -1
  4.  
  5. /**
  6.  * Select a secondary serial port on the board to use for communication with the host.
  7.  * :[-1, 0, 1, 2, 3, 4, 5, 6, 7]
  8.  */
  9. //#define SERIAL_PORT_2 -1
  10.  
  11. /**
  12.  * This setting determines the communication speed of the printer.
  13.  *
  14.  * 250000 works in most cases, but you might try a lower speed if
  15.  * you commonly experience drop-outs during host printing.
  16.  * You may try up to 1000000 to speed up SD file transfer.
  17.  *
  18.  * :[2400, 9600, 19200, 38400, 57600, 115200, 250000, 500000, 1000000]
  19.  */
  20. #define BAUDRATE 9600
  21.  
  22. // Enable the Bluetooth serial interface on AT90USB devices
  23. //#define BLUETOOTH
  24.  
  25. // Choose the name from boards.h that matches your setup
  26. #ifndef MOTHERBOARD
  27.   #define MOTHERBOARD BOARD_RAMPS_14_SF
  28. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement