clinton/Smoothieware.git
2013-02-10 Adam GreenSwitch back to ugly size output.
2013-02-09 Ben GamariMerge pull request #98 from bgamari/fixes
2013-02-09 Ben GamariGcode: Again ensure no allocations occur
2013-02-08 Adam GreenReorganized members in Pin class to save 4 bytes.
2013-02-07 Ben GamariMerge pull request #94 from bgamari/fixes
2013-02-07 Ben GamariGcode: Ensure std::string operations don't incur alloca...
2013-02-07 Adam Green_sbrk() check for overflow past MSP.
2013-02-06 Michael MoonUSB: ensure Connect pin is set up before disconnect...
2013-02-06 Michael MoonUSB: work around OSX behaviour where if the device...
2013-02-06 Michael MoonModule Events: remove on_stepper_wake_up event as it...
2013-02-06 Michael MoonModule: don't sign all modules up for ON_CONFIG_RELOAD...
2013-02-06 Michael MoonModule: use macros for event definitions to ensure...
2013-02-06 Michael MoonUSB: run USB stack from idle event instead of via inter...
2013-02-06 Michael MoonSDCard: implement busy flag
2013-02-05 Arthur WolfMerge branch 'edge' of github.com:arthurwolf/Smoothie...
2013-02-05 Arthur Wolfadded max_pwm to temperaturecontrol
2013-02-05 Adam GreenRemove iprintf() call from spi.cpp
2013-02-05 Adam GreenAccept outside ENABLE_DEBUG_MONITOR settings.
2013-02-03 Arthur Wolfadding info about junction_deviation
2013-02-03 Arthur Wolfadding junction_deviation to config file
2013-02-03 Arthur WolfMerge branch 'edge' of github.com:arthurwolf/Smoothie...
2013-02-03 Arthur Wolfremoving max_jerk from Planner too
2013-02-03 Arthur Wolfmax_jerk was unused, removing
2013-02-03 Michael MoonUSB: silence warning when debug output is disabled
2013-02-03 Michael MoonAlter USB descriptors and windows INF driver to have...
2013-02-03 Michael MoonMRI Hooks: remember previous state, programmatically...
2013-02-02 Arthur Wolfspeed did not get reset between SOLO blocks in Extruder...
2013-02-02 Arthur WolfMerge branch 'edge' of github.com:arthurwolf/Smoothie...
2013-02-02 Arthur WolfExtruder now reacts to G90 and G91
2013-02-02 Adam GreenSet SDCard::_cs pin to be an output.
2013-02-01 Arthur Wolfadding current_block = NULL in player.cpp, johaness fix
2013-02-01 Adam GreenAdd OS X binaries for dfu-util and lpc21isp
2013-02-01 Adam GreenEasier to configure MRI in makefile.
2013-01-31 Ben GamariMerge pull request #91 from bgamari/edge
2013-01-31 Ben GamariEnsure that C++11 checksum is evaluated at compile...
2013-01-31 Adam GreenMake checksum macros work in non-optimized builds.
2013-01-31 Adam GreenAdd bgamari's C++11 checksumming approach.
2013-01-31 Adam GreenMerge branch 'edge' into checksum_macro
2013-01-30 Arthur Wolfhttps://gist.github.com/4671861 : using on_idle instead...
2013-01-30 Adam GreenCalculate Fletcher Checksums at compile time from string.
2013-01-28 Arthur Wolfthe laser module now will not take the p21 pin, unless...
2013-01-28 Arthur Wolfadding support for (comments)
2013-01-28 Adam GreenDemangle C++ names in main.disasm.
2013-01-24 Ben GamariMerge pull request #87 from bgamari/edge
2013-01-24 Ben GamariStreamOutput: Mark printf with __attribute__((format))
2013-01-24 Michael MoonStreamOutput: printf calls virtual puts so we can reduc...
2013-01-24 Michael MoonUSBSerial: marshall attach/detach operations to idle...
2013-01-24 Adam GreenCatch dynamic de/allocations in ISRs.
2013-01-24 Arthur Wolfremoving get_value from laser too
2013-01-24 Arthur Wolfremoving a get_value from switch
2013-01-24 Arthur Wolfadded make dfu, need to merge with existing upload
2013-01-23 arthurwolfMerge pull request #86 from bgamari/edge
2013-01-23 Ben GamariGcode: Use const_cast to silence warning
2013-01-23 Ben GamariGcode: Use operator[] instead of string::at to avoid...
2013-01-23 Ben GamariKernel: Use vector<array<Module*>> instead of flat...
2013-01-23 Michael Moonuse MRI hooks to disable heaters in debug mode
2013-01-22 Adam GreenAdd __mriPlatform_EnteringDebuggerHook() and __mriPlatf...
2013-01-21 Michael MoonMerge bgamari/median into edge
2013-01-21 Ben GamariTemperatureControl: Use median smoothing instead of...
2013-01-20 Arthur Wolfadded make dfu
2013-01-20 Michael MoonSecret Sauce for windows to activate the driver it...
2013-01-18 Michael MoonTemperatureControl: PID resets I to 0 if output exceeds...
2013-01-18 Michael MoonSlowTicker: implement G4 pause
2013-01-18 Michael MoonGcode: get_int method to shortcut string->float->int...
2013-01-18 Michael Moonutils: is_alpha, is_digit, is_numeric, is_alphanum...
2013-01-18 Michael MoonExtruder: make sure we have a block to release, avoid...
2013-01-18 Michael MoonUSB DFU: keep usb connected while we respond to reset...
2013-01-18 Michael MoonRobot: remove unused variable
2013-01-17 Arthur Wolfversion change
2013-01-15 Ben GamariMerge pull request #83 from bgamari/fixes
2013-01-15 Ben GamariSerialConsole: reserve a reasonably sized buffer
2013-01-15 Ben Gamariutils: Make string utils const where possible
2013-01-15 Ben GamariEndstops: Fix whitespace
2013-01-15 Ben GamariCircBuffer: Add peek()
2013-01-15 Ben GamariKernel: Use bzero instead of loop
2013-01-15 Michael MoonRobot: add M220 speed override percentage, ala Marlin...
2013-01-15 Michael MoonTemperatureControl: increase default I_MAX to PWM_MAX...
2013-01-15 Michael MoonTemperatureControl: honor readings_per_second configura...
2013-01-15 Michael MoonMerge branch 'feature/on_second_tick_event' into edge
2013-01-15 Michael MoonTemperatureControl: report temperatures every second...
2013-01-15 Michael Moonmove on_second_tick callout to on_idle event, also...
2013-01-15 Michael MoonEvents: add ON_SECOND_TICK event that fires once per...
2013-01-15 Michael MoonUSB: ensure interrupts are disabled while getting LPC...
2013-01-15 Michael MoonMerge branch 'fix/gcode_freed_while_in_queue' into...
2013-01-15 Michael Moonallocate Gcode objects on the heap, don't clean them...
2013-01-06 Michael Moonmakefile: flash target to use defined console, and...
2013-01-06 Michael Moonlooks like clear_vector_double might be broken, trying...
2013-01-06 Michael Moonbare G92 by itself should behave now
2013-01-03 Michael MoonMerge branch 'feature/extra-usbserial-interface' into...
2013-01-03 Michael Moonanother USBSerial interface
2013-01-03 Michael Moonalways add MSD descriptors, don't wait for connect
2013-01-02 Michael MoonMerge branch 'hotfix/db35a1-typo' into edge
2013-01-02 Michael Moonfix typo - https://github.com/arthurwolf/Smoothie/commi...
2013-01-02 Michael MoonMerge branch 'master' into edge
2013-01-02 Michael MoonMerge branch 'feature/new-usb-stack' into edge
2013-01-02 Michael MoonWatchdog: default disabled, currently messes with DFU...
2013-01-02 Michael Moonlonger, slower SD card initialisation - seems that...
2013-01-02 Michael MoonRobot: change defaults to better suit smoothieboard...
2013-01-02 Michael MoonUSBSerial: swap CDC endpoint descriptors for compatibil...
2013-01-02 Michael MoonTemperatureControl: go all the way to max_pwm instead...
next