Spottedon Hackaday, a packing robot for Raspberry Pis controlled byLinuxCNC running on a Raspberry Pi.
The blog post gives quite a detailed description of how the system iscontrolled using a mixture of Ruby scripting and the linuxcncrshremote control interface.
LINUX is the registered trademark of Linus Torvalds in the U.S. andother countries. The registered trademark Linux is used pursuantto a sublicense from LMI, the exclusive licensee of Linus Torvalds,owner of the mark on a world-wide basis.
The Debian 12 Bookworm ISO will install a full Debian system with the requiredrealtime kernel and the linuxcnc-uspace application. It uses a PREEMPT-RTpatched kernel which is close to mainstream Linux but does not, in somecases, give quite such good realtime performance as the previous RTAIkernel. It is very often more than good enough. It should probably bethe first version tried even if using a parallel port.This is compatible with all Mesa and Pico interface boards.
The more adventurous can install the Bookworm ISO and then install theexperimental RTAI kernel as described in 2.9 documentsThe kernel-mode RTAI installation can not be used with Mesa Ethernet-interfaced cards.In addition to the RTAI kernel you will also need the rtai-modules package and the linuxcnc package. Both canbe downloaded by adding the linuxcnc 2.9-rt package repository as described in the link above.
LinuxCNC debian packages aka .deb files can be installed on a system with dpkgfrom the command line or with GDebi as a graphical install method. You will needto have a compatible realtime kernel to control machinery.
LinuxCNC (formerly Enhanced Machine Controller or EMC2) is a free, open-source Linux software system that implements numerical control capability using general purpose computers to control CNC machines. It's mainly intended to run on PC AMD x86-64 systems. Designed by various volunteer developers at
linuxcnc.org, it is typically bundled as an ISO file with a modified version of Debian Linux which provides the required real-time kernel.
LinuxCNC is a software system for numerical control of machines such as milling machines, lathes, plasma cutters, routers, cutting machines, robots and hexapods. It can control up to 9 axes or joints of a CNC machine using G-code (RS-274NGC) as input. It has several GUIs suited to specific kinds of usage (touch screen, interactive development).
Currently it is almost exclusively used on x86 PC platforms, but has been ported to other architectures.[citation needed] It makes extensive use of a real time-modified kernel, and supports both stepper- and servo-type drives.
The EMC Public Domain software system was originally developed by NIST, as the next step beyond the National Center for Manufacturing Sciences / Air Force sponsored Next Generation Controller Program[NGC 1989] /Specification for an Open Systems Architecture[SOSAS]. It was called the EMC [Enhanced Machine Controller Architecture 1993]. Government sponsored Public Domain software systems for the control of milling machines were among the first projects developed with the digital computer in the 1950s. It was to be a "vendor-neutral" reference implementation of the industry standard language for numerical control of machining operations, RS-274D (G-code).
The software included the RS274 interpreter driving the motion trajectory planner, real-time motor/actuator drivers and a user interface. It demonstrated the feasibility of an advanced numerical control system using off the shelf PC hardware running FreeBSD or Linux, interfacing to various hardware motion control systems. Additional development continues using current and additional architectures (e.g. ARM architecture devices).
The demonstration project was very successful and created a community of users and volunteer contributors. Around June 2000, NIST relocated the source code to SourceForge under the Public Domain license in order to allow external contributors to make changes. In 2003, the community rewrote some parts of it, reorganized and simplified other parts, then gave it the new name, EMC2. EMC2 is still being actively developed. Licensing is now under the GNU General Public License.
The adoption of the new name EMC2 was prompted by several major changes. Primarily, a new layer known as HAL (Hardware Abstraction layer) was introduced to interconnect functions easily without altering C code or recompiling. This split trajectory and motion planning from motion hardware, making it easier to generate control programs to support gantry machine, lathe threading and rigid tapping, SCARA robot arms and a variety of other adaptations. HAL comes with some interactive tools to examine signals and connect and remove links. It also includes a virtual oscilloscope to examine signals in real time. Another change with EMC2 is Classic Ladder, (an open-source ladder logic implementation) adapted for the real time environment to configure complex auxiliary devices like automatic tool changers.
Around 2011, the name was changed from EMC2 to LinuxCNC, due to a trademark conflict with EMC Corporation, which holds trademarks for 'EMC' and 'EMC2'. LinuxCNC received a license for the 'Linux' trademark from the Linux Foundation.[1]
Due to the need of fine grained, precise real-time control of machines, LinuxCNC requires a platform with real-time computing capabilities. Early versions of EMC ran under a real-time version of Windows NT, but later version of Windows did not have good real-time support so Linux with real-time extensions became the preferred platform.[1] Currently LinuxCNC uses the RTAI kernel or PREEMPT-RT[broken anchor] with LinuxCNC's 'uspace' flavour of the RTAPI.
Installing LinuxCNC and the underlying real-time kernel patches on a base Linux system can be a daunting task. Paul Corner came to the rescue with the BDI (Brain Dead Install) which was a CD from which a complete working system (Linux, real-time patches, and LinuxCNC) could be installed.[2] This made LinuxCNC accessible to a much larger user community. Today Paul's BDI has evolved into a bootable (live) ISO that can be burned to a CD or USB and run on most any PC style computer to test drive LinuxCNC without having to install the system. Bootable LinuxCNC ISOs are available for Debian wheezy (RTAI kernel) and Debian stretch (RT-PREEMPT kernel).
LinuxCNC uses the model of 'sense, plan, act' in its interactions with hardware.[4] For instance, it reads the current axis position, calculates a new target position/voltage, and then writes that to the hardware. There is no buffering of commands nor are externally initiated reads or writes allowed. This no-buffering approach gives the most freedom to adding or changing capabilities of LinuxCNC. By using relatively "dumb" external hardware and programming the capabilities in the host computer, LinuxCNC is not locked to any one piece of hardware. It also allows an interested user to easily change behaviour/capabilities/hardware.
This model tends to lend itself to specific types of external interfaces---PCI, PCIE, Parallel port (in SPP or EPP mode), ISA, and Ethernet have been used for motor control. USB and RS232 serial are not good candidates; USB having bad realtime capabilities and RS232 being too slow for motor control.
LinuxCNC has basic "realtime" requirements because of this model. The interval between reading and writing must be consistent and reasonably fast. A typical machine does realtime calculations in a 1 millisecond repeating thread. The reading and writing to hardware must be a small part of this time, e.g. 200 microseconds, otherwise the phase shift makes tuning more difficult and there is less time available for the non-realtime programs, which may make the screen controls less responsive.
HAL allows a multitude of configurations to be built [7] while being flexible: one can mix & match various hardware control boards, output control signals through the parallel port or serial port - while driving stepper or servo motors, solenoids and other actuators.
LinuxCNC also includes a software programmable logic controller (PLC) which is usually used in extensive configurations (such as complex machining centres). The software PLC is based on the open source project Classicladder,[8] and runs within the real-time environment.
All branches of LinuxCNC are available here as precompiled packages: The master branch, currently 2.9 containing the latest development version. This branch is not always stable! Use with care! And if it breaks, please let us know. If you want to help test the upcoming next stable version of LinuxCNC, this is the branch for you.
The 2.8 branch, containing the latest stable version. If you want a stable version of LinuxCNC with the latest proposed bug fixes, this is the branch for you. The packages here are usually not official releases. They contain newer (less tested) changes that we are planning to include in the next official stable release. We try to only make bug fixes to real problems found in the previous stable release.
The 2.7, 2.6 and 2.5 branches, containing older stable versions. These branches have been superceded by the 2.8 branch. The old branches will be kept around for a while and will receive bug fixes. All users are encouraged to upgrade to 2.8 or later.
All other branches of LinuxCNC live in the 'scratch' component of the package archive. These are considered temporary or experimental feature branches. They are of interest mainly to the developers of the branch, and their testers. Only use this if you know what you're doing!Upgrading to a new major versionIf you're upgrading from one major version to another, for example from 2.7 to 2.8, you may need to do some configuration changes! Most configuration changes should be handled automatically when you first try to run LinuxCNC after the upgrade. Further information is available here.
3a8082e126