Advertisement
cloviscuba

grbl.h

Jul 19th, 2021 (edited)
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. /*
  2. grbl.h - main Grbl include file
  3. Part of Grbl
  4.  
  5. Copyright (c) 2015 Sungeun K. Jeon
  6.  
  7. Grbl is free software: you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation, either version 3 of the License, or
  10. (at your option) any later version.
  11.  
  12. Grbl is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Grbl. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20.  
  21. #ifndef grbl_h
  22. #define grbl_h
  23.  
  24. // Grbl versioning system
  25. #define GRBL_VERSION "0.9j"
  26. #define GRBL_VERSION_BUILD "20160317"
  27.  
  28. // Define standard libraries used by Grbl.
  29. #include <avr/io.h>
  30. #include <avr/pgmspace.h>
  31. #include <avr/interrupt.h>
  32. #include <avr/wdt.h>
  33. #include <util/delay.h>
  34. #include <math.h>
  35. #include <inttypes.h>
  36. #include <string.h>
  37. #include <stdlib.h>
  38. #include <stdint.h>
  39. #include <stdbool.h>
  40.  
  41. // Define the Grbl system include files. NOTE: Do not alter organization.
  42. #include "config.h"
  43. #include "nuts_bolts.h"
  44. #include "settings.h"
  45. #include "system.h"
  46. #include "defaults.h"
  47. #include "cpu_map.h"
  48. #include "coolant_control.h"
  49. #include "eeprom.h"
  50. #include "gcode.h"
  51. #include "limits.h"
  52. #include "motion_control.h"
  53. #include "planner.h"
  54. #include "print.h"
  55. #include "probe.h"
  56. #include "protocol.h"
  57. #include "report.h"
  58. #include "serial.h"
  59. #include "spindle_control.h"
  60. #include "stepper.h"
  61. #include "contador_paginas.h" //inclui o scketch do Clovis para acionar o contador numerico
  62.  
  63. #endif
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement