Skip to content

Instantly share code, notes, and snippets.

@Naylamp-Mechatronics
Last active May 30, 2019 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Naylamp-Mechatronics/acdbbf24acf6d5f363911c56ea85bd42 to your computer and use it in GitHub Desktop.
Save Naylamp-Mechatronics/acdbbf24acf6d5f363911c56ea85bd42 to your computer and use it in GitHub Desktop.
Cambios a realizar en el firmware GRBL
//Se puede descargar GRBL desde su repositorio oficial en: https://github.com/gnea/grbl
//En el directorio donde se encuentra GRBL, en el archivo grbl/cpu_map.h es necesario hacer los cambios
// de las siguientes definiciones de pines. Solo reemplazar las siguientes lineas y dejar intacto el resto.
#define X_STEP_BIT 5 // Uno Digital Pin 2
#define Y_STEP_BIT 6 // Uno Digital Pin 3
#define Z_STEP_BIT 7 // Uno Digital Pin 4
#define X_DIRECTION_BIT 2 // Uno Digital Pin 5
#define Y_DIRECTION_BIT 3 // Uno Digital Pin 6
#define Z_DIRECTION_BIT 4 // Uno Digital Pin 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment