Buildbotics CNC Controller Firmware Change Log
==============================================
+## v0.3.8
+ -
+
## v0.3.7
- Allow blocking error dialog for a period of time
- Show actual error message on planner errors
- Search and latch velocity mm/min -> m/min
- Fixed password update (broken in last version)
- Start Web server eariler in case of Python coding errors
+
+
+Change log not maintained in previous versions. See git commit log.
{
"name": "bbctrl",
- "version": "0.3.7",
+ "version": "0.3.8",
"homepage": "http://buildbotics.com/",
"repository": "https://github.com/buildbotics/bbctrl-firmware",
"license": "GPL-3.0+",
static void shutdown(uint16_t flags) {
- regs[FLAGS_REG] = flags;
-
// Disable timers
TCCR0B = TCCR1B = 0;
if (loads[0].limit) flags |= LOAD1_LIMITING_FLAG;
if (loads[1].limit) flags |= LOAD2_LIMITING_FLAG;
+ regs[FLAGS_REG] = flags;
if (flags & FATAL_FLAG_MASK) shutdown(flags);
}