index
:
kutter
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
klippy
/
mcu.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
mcu: Store MCU_stepper commanded_pos as a float
Kevin O'Connor
2017-12-07
1
-7
/
+6
*
mcu: Remove unneeded MCU_digital_out.get_last_setting() method
Kevin O'Connor
2017-12-06
1
-4
/
+0
*
mcu: Reset the stepper step clock on init - not after each motor on
Kevin O'Connor
2017-12-06
1
-13
/
+8
*
mcu: Be sure all moves are completed before raising a home timeout
Kevin O'Connor
2017-12-06
1
-7
/
+6
*
homing: Make sure to clean up homing state even if homing fails
Kevin O'Connor
2017-12-06
1
-17
/
+18
*
homing: Pass list of endstops (not steppers) to the homing code
Kevin O'Connor
2017-12-06
1
-0
/
+2
*
mcu: Make sure steppers added to an endstop are on the same mcu
Kevin O'Connor
2017-12-06
1
-0
/
+2
*
mcu: Make sure all endstop objects are disabled on a reconnect
Kevin O'Connor
2017-12-06
1
-0
/
+3
*
stepper: Add get_endstops() / set_position wrappers
Kevin O'Connor
2017-11-18
1
-0
/
+2
*
mcu: Fix command restart
Kevin O'Connor
2017-10-12
1
-3
/
+3
*
klippy: Rework shutdown handling
Kevin O'Connor
2017-10-12
1
-4
/
+6
*
gpiocmds: Allow the start value for a pin to differ from the default_value
Kevin O'Connor
2017-10-12
1
-11
/
+24
*
endstop: Eliminate end_stop_set_oversample command
Kevin O'Connor
2017-10-12
1
-13
/
+6
*
endstop: Support oversampling of the endstop
Kevin O'Connor
2017-10-01
1
-0
/
+9
*
clocksync: Add support for dumping internal state for debugging
Kevin O'Connor
2017-09-27
1
-2
/
+3
*
serialhdl: Make dump_debug() output atomic
Kevin O'Connor
2017-09-27
1
-2
/
+2
*
mcu: Separate restart_microcontroller() into multiple functions
Kevin O'Connor
2017-09-20
1
-38
/
+37
*
linux: Initial support for running Klipper in a Linux real-time process
Kevin O'Connor
2017-09-20
1
-1
/
+2
*
mcu: Initial support for multiple micro-controllers
Kevin O'Connor
2017-09-20
1
-34
/
+73
*
mcu: Move code around in MCU class to keep like code together
Kevin O'Connor
2017-09-19
1
-108
/
+107
*
mcu: Move print_time to clock conversion code to clocksync.py
Kevin O'Connor
2017-09-19
1
-9
/
+9
*
mcu: Add mcu wrapper functions and avoid direct acccess to mcu variables
Kevin O'Connor
2017-09-19
1
-37
/
+39
*
stepcompress: Implement print time to clock conversion in C code
Kevin O'Connor
2017-09-19
1
-13
/
+8
*
clocksync: Don't export get_last_clock()
Kevin O'Connor
2017-09-19
1
-32
/
+18
*
clocksync: Move clock synchronization code into new file
Kevin O'Connor
2017-09-19
1
-12
/
+19
*
mcu: Update file purpose comment
Kevin O'Connor
2017-09-19
1
-1
/
+1
*
mcu: Pass print_time directly to MCU calls
Kevin O'Connor
2017-09-19
1
-48
/
+44
*
toolhead: Synchronize print_time to main mcu's time
Kevin O'Connor
2017-09-19
1
-29
/
+12
*
stepcompress: Return number of steps traveled from stepcompress_push()
Kevin O'Connor
2017-09-13
1
-7
/
+4
*
pins: Don't pass mcu_freq to update_command()
Kevin O'Connor
2017-09-13
1
-2
/
+1
*
mcu: Limit value range of PWM and digital outputs prior to transmission
Kevin O'Connor
2017-09-06
1
-10
/
+7
*
mcu: Improve error descriptions in Common_MCU_errors
Kevin O'Connor
2017-09-06
1
-2
/
+2
*
mcu: Provide some further help on common MCU shutdown errors
Kevin O'Connor
2017-09-05
1
-2
/
+28
*
mcu: Limit ADC min/max range to a 16bit integer
Kevin O'Connor
2017-09-05
1
-2
/
+3
*
pru: Support config_reset command to manually reset mcu
Kevin O'Connor
2017-09-03
1
-10
/
+26
*
mcu: Add get_mcu() call to the mcu oid objects
Kevin O'Connor
2017-08-29
1
-7
/
+10
*
mcu: Fix bug causing corexy to not work (introduced in 9d75c3b0)
Kevin O'Connor
2017-08-29
1
-2
/
+2
*
mcu: Drop support for TICKS() expansion in mcu config commands
Kevin O'Connor
2017-08-26
1
-10
/
+11
*
chipmisc: Add support for statically configured output pins
Kevin O'Connor
2017-08-26
1
-12
/
+40
*
mcu: Track stepqueues separately from steppers
Kevin O'Connor
2017-08-25
1
-6
/
+6
*
mcu: Track oids separately from objects requiring a build_config() callback
Kevin O'Connor
2017-08-25
1
-13
/
+18
*
mcu: Eliminate "init callback" phase during connect
Kevin O'Connor
2017-08-25
1
-28
/
+21
*
pins: Support registering arbitrary chips that supply configurable pins
Kevin O'Connor
2017-08-25
1
-66
/
+76
*
klippy: Store printer startup parameters in new "start_args" dictionary
Kevin O'Connor
2017-08-25
1
-11
/
+22
*
irq: Support sleeping when mcu is idle
Kevin O'Connor
2017-07-17
1
-2
/
+4
*
mcu: Support converting from a system time to an mcu time
Kevin O'Connor
2017-07-17
1
-0
/
+6
*
klippy: Use newer "except XYZError as e" python syntax
Kevin O'Connor
2017-06-10
1
-1
/
+1
*
serialhdl: Support working with pseudo serial devices
Kevin O'Connor
2017-05-15
1
-1
/
+5
*
pwmcmds: Export the maximum PWM value
Kevin O'Connor
2017-05-15
1
-4
/
+8
*
queuelogger: Add critical information to each logfile on rollover
Kevin O'Connor
2017-05-01
1
-0
/
+11
[next]