CNC-router-5

所属分类:单片机开发
开发工具:C/C++
文件大小:5987KB
下载次数:168
上传日期:2014-06-20 03:33:31
上 传 者bronek999
说明:  STM32F103 CNC project CND based on GRBL 800x480 TFT display SSD1963 powered

文件列表:
CNC (0, 2014-04-16)
CNC\a (0, 2014-03-04)
CNC\a\main.c (4192, 2014-02-02)
CNC\config.h (11820, 2014-02-21)
CNC\coolant_control.c (1727, 2014-03-01)
CNC\coolant_control.h (1017, 2014-03-01)
CNC\defaults.h (2411, 2014-04-16)
CNC\doc (0, 2014-03-04)
CNC\doc\commands.txt (2987, 2014-02-02)
CNC\doc\pinmapping.txt (4014, 2014-02-02)
CNC\doc\resources.txt (404, 2014-02-02)
CNC\doc\structure.txt (1974, 2014-02-02)
CNC\eepromcnc.c (5725, 2014-03-01)
CNC\eepromcnc.h (345, 2014-02-02)
CNC\gcode.c (32720, 2014-04-16)
CNC\gcode.h (4862, 2014-04-16)
CNC\limits.c (12508, 2014-02-26)
CNC\limits.h (969, 2014-02-21)
CNC\motion_control.c (14354, 2014-02-25)
CNC\motion_control.h (2027, 2014-03-01)
CNC\nuts_bolts.c (4487, 2014-02-21)
CNC\nuts_bolts.h (4656, 2014-02-21)
CNC\pin_map.h (4309, 2014-02-21)
CNC\planner.c (24171, 2014-03-05)
CNC\planner.h (4584, 2014-03-05)
CNC\print.c (3707, 2014-02-21)
CNC\print.h (1115, 2014-02-21)
CNC\protocol.c (15212, 2014-02-25)
CNC\protocol.h (1910, 2014-02-21)
CNC\report.c (13577, 2014-02-21)
CNC\report.h (2376, 2014-02-21)
CNC\script (0, 2014-03-04)
CNC\script\Obsolete (0, 2014-03-04)
CNC\script\Obsolete\console (415, 2014-02-02)
CNC\script\Obsolete\proxy (110, 2014-02-02)
CNC\script\Obsolete\stream (39, 2014-02-02)
CNC\script\Obsolete\stream.rb (1137, 2014-02-02)
CNC\script\Obsolete\trapezoid_simulator.rb (2995, 2014-02-02)
CNC\script\simple_stream.py (1266, 2014-02-02)
... ...

#Grbl - An embedded g-code interpreter and motion-controller for the Arduino/AVR328 microcontroller ------------ Grbl is a no-compromise, high performance, low cost alternative to parallel-port-based motion control for CNC milling. It will run on a vanilla Arduino (Duemillanove/Uno) as long as it sports an Atmega 328. The controller is written in highly optimized C utilizing every clever feature of the AVR-chips to achieve precise timing and asynchronous operation. It is able to maintain up to 30kHz of stable, jitter free control pulses. It accepts standards-compliant G-code and has been tested with the output of several CAM tools with no problems. Arcs, circles and helical motion are fully supported, as well as, other basic functional g-code commands. Functions and variables are not currently supported, but may be included in future releases in a form of a pre-processor. Grbl includes full acceleration management with look ahead. That means the controller will look up to 18 motions into the future and plan its velocities ahead to deliver smooth acceleration and jerk-free cornering. ##Downloads (Right-Click and Save-Link-As): _**Master Branch:**_ * [Grbl v0.8c Atmega328p 16mhz 9600baud](http://bit.ly/SSdCJE) (Last updated: 2013-12-07) - 2013-12-07: G18 and serial volatile fixes. - 2013-04-05: Line buffer increased and overflow feedback added. _**Edge/Development Branch:**_ * [Grbl v0.9a Build 2013-03-19](http://bit.ly/Y0tMHo) : Edge Branch - New experimental stepper algorithm. Smoother. Axes acceleration and maximum velocity limits. Automatic arc segment scaling by tolerance setting, leading to much faster feedrates about them. Updated g-code G10. 30kHz step rate absolute max. CAUTION: Bugs still exist. Settings WILL be over-written. Please let us know of any lingering bugs (except with homing). _**Archives:**_ * [Grbl v0.8a Atmega328p 16mhz 9600baud](http://bit.ly/TVCTVv) * [Grbl v0.7d Atmega328p 16mhz 9600baud](http://bit.ly/ZhL15G) * [Grbl v0.6b Atmega328p 16mhz 9600baud](http://bit.ly/VD04A5) * [Grbl v0.6b Atmega168 16mhz 9600baud](http://bit.ly/SScWnE) * [Grbl v0.51 Atmega328p 16mhz 9600baud](http://bit.ly/W75BS1) * [Grbl v0.51 Atmega168 16mhz 9600baud](http://bit.ly/VXyrYu) ##Changelog for v0.8 from v0.7: - Major structural overhaul to allow for multi-tasking events and new feature sets. - Run-time command control: Feed hold (pause), Cycle start (resume), Reset (abort), Status reporting (current position and state). - Controlled feed hold with deceleration to ensure no skipped steps and loss of location. - After feed hold, cycle accelerations are re-planned and may be resumed. - Advanced homing cycle with direction and speed configuration options. (Requires limit switches.) When enabled, homing is required before use to ensure safety. - Limit pins are held normal high with internal pull-up resistors. Wiring only requires a normally-open switch connected to ground. (For both ends of an axis, simply wire two in parallel into the same pin.) - Hard limits option and plays nice with homing cycle, so switches can be used for both homing and hard limits. - A check g-code mode has also been added to allow users to error check their programs. - Re-factored g-code parser with robust error-checking. - 6 work coordinate systems (G54-G59), offsets(G92), and machine coordinate system support. Work coordinate systems are stored in EEPROM and persistent. - G10 L2 and L20 work coordinate settings support. L2 sets one or more axes values. L20 sets the current machine position to the specified work origin. - G28.1 and G30.1 set home position support. These set the internal EEPROM parameter values to the current machine position. (G28 and G30 no longer perform homing cycle, '$H' does. They move to these stored positions.) - Program stop(M0,M2,M30) support. - Coolant control(M7*,M8,M9) support. (M7 is a compile-time option). - G-code parser state and '#' parameters feedback. - System reset re-initializes grbl without resetting the Arduino and retains machine/home position and work coordinates. - Settings overhauled and dozens of new settings and internal commands are now available, when most were compile-time only. - New startup line setting. Allows users to store a custom g-code block into Grbl's startup routine. Executes immediately upon startup or reset. May be used to set g-code defaults like G20/G21. - Pin-outs of the cycle-start, feed-hold, and soft-reset runtime commands on pins A0-A2. - Misc bug fixes and removed deprecated acceleration enabled code. - Advanced compile-time options: XON/XOFF flow control (limited support), direction and step pulse time delay, up to 5 startup lines, and homing sequence configurability. *Important note for Atmega 168 users:* Going forward, support for Atmega 168 will be dropped due to its limited memory and speed. However, legacy Grbl v0.51 "in the branch called 'v0_51' is still available for use. _The project was initially inspired by the Arduino GCode Interpreter by Mike Ellery_ ------------- Grbl is an open-source project and fueled by the free-time of our intrepid administrators and altruistic users. If you'd like to donate, all proceeds will be used to help fund supporting hardware and testing equipment. Thank you! [![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EBQWAWQAAT878)

近期下载者

相关文件


收藏者