Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-28canserial: Fix typo in canserial.hwork-canbus-20220725Kevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-27docs: Recommend allow-hotplug in CANBUS.md when using USB to canbus bridgeKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-27docs: Updates to CANBUS_protocol.mdKevin O'Connor
Update the document with latest details. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-27stm32: Remove stm32f4 canbus warningKevin O'Connor
The canbus code has been successfully tested on stm32f4. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-26mcu: Delay reset signaling for usb to canbus bridge nodesKevin O'Connor
An mcu device acting as an "mcu bridge" should only be reset after other normal devices are reset - otherwise the bridge wont be able to pass along the reset message to the downstream mcus. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-26canserial: Request bootloader via bootloader_request()Kevin O'Connor
Use bootloader_request() instead of try_request_canboot(). This allows the bootloader machanism to work for more bootloaders. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-26usb_cdc: Rename usb_request_bootloader() to bootloader_request()Kevin O'Connor
Rename this board API function to a more generic name. This is in preparation for calling the function from the canbus code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-26graphstats: Normalize mcu frequency to microseconds when graphing multiple mcusKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-26serialqueue: Improve canbus timingKevin O'Connor
Adjust timing based on the minimum transmission time of canbus messages. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-25canbus_ids: Use 4 as the first nodeid to reduce id bitstuffingKevin O'Connor
Starting with nodeid 4 instead of nodeid 0 can reduce bitstuffing of the id field in common configurations. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-25stm32: Add CCRDY check to stm32g0 adcKevin O'Connor
The stm32g0 specification states that it is required to wait for the CCRDY flag to be raised after changing the channel configuration. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-24config: Use printer-creality-ender3-s1-2021.cfg for both s1 and s1 pro.Kevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-22manual_probe: report statusPedro Lamas
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
2022-07-22config: Fix wording of serial port selection on recent creality configsKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-22config: Integrate configuration file for Creality Sermoon V1. (#5621)S1NH
Configuration for the stock Creality Sermoon V1. Signed-off-by: Du Chengyao <hbyls@live.com>
2022-07-21spi_flash: Add board definition for Mellow FLY Gemini V2 (#5651)s6t
Signed-off-by: Tobias Schröder <schroedt@live.de>
2022-07-19config: Fix screw typo in printer-creality-cr10-v3-2020.cfgKevin O'Connor
Reported by @TonyRouse. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-19config: Change of alias for heater_fan in multiple configs (#5632)JamesH1978
This PR serves to fix a longstanding misnomer in some config files. Many configs state a nozzle_cooling_fan alias for what is usually a "hotend cooling fan". This causes ambiguity and confusion with the parts fan. I have identified all 24 files with this and changed them here. Signed-off-by: James Hartley <james@hartleyns.com>
2022-07-19docs: fix rawparams example by truncating commentsPedro Lamas
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
2022-07-19config: Note 25Mhz clock in generic-bigtreetech-skr-3.cfgKevin O'Connor
Reported by @kingtricky and confirmed by @bigtreetech. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-17docs: Add BIGTREETECH to Sponsors.md fileKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-17lib: Update to latest can2040 codeKevin O'Connor
Simplify tx state tracking. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-16docs: Add a Sponsors.md fileKevin O'Connor
Add a documentation page with information on how to support Klipper. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-16workflows: Fix spurious path in klipper3d-deploy.yamlKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-16mkdocs-requirements: Force markdown==3.3.7Kevin O'Connor
A new release of markdown (v3.4.1) breaks the website deployment scripts. Force the existing version. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-16lib: Update to the latest can2040 codeKevin O'Connor
Rename to "match" state machine instead of "ack". Minor simplification to tx_note_crc_start(). Call pio_match_clear() from report functions. Add pio_match_calc_key() helper function. Raise irq after 6 passive eof bits for faster rx message notification. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-06config: Added Anet alt-wiring display example (#5605)Cabia Rangris
Signed-off-by: Vladimir Serov <cab404@mailbox.org>
2022-07-06webhooks: Close clients that become unresponsiveKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-06webhooks: Use reactor to watch for writable fdsKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-06reactor: Add support for waiting on fds becoming writableKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-06rp2040: Add support for USB to CANbus bridge modework-can2040-20220522Kevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-06rp2040: Initial support for CANbusKevin O'Connor
Add support for CANbus on the rp2040 using the can2040 "software canbus" implementation. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-07-06lib: Add can2040 codeKevin O'Connor
The "can2040" project implements "software canbus" support on rp2040 micro-controllers. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-30stm32: stm32g0/h7 usb_dfu_bootloader support (#5596)BIGTREETECH
Signed-off-by: Alan.Ma from BigTreeTech <tech@biqu3d.com>
2022-06-30respond: No forced spaces (#5152)chestwood96
Signed-off-by: Adrian Joachim <adi.joachim12@gmail.com>
2022-06-30test: Fix ordering of printers.testKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-30test: Add printer-biqu-b1-se-plus-2022.cfg to printers.testKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-30config: Create printer-biqu-b1-se-plus.cfg (#5477)Bruno Melo
Signed-off-by: Bruno Melo <brunomelo81@gmail.com>
2022-06-27usb_canbus: Initial support for USB to CAN bridge modeKevin O'Connor
Support a USB interface that shows up as a canbus adapter to linux. Route both local and real canbus packets over that interface. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-27canserial: Rename canbus.c to canserial.cKevin O'Connor
Rename the canbus.c code to canserial.c and introduce new wrapper functions in canbus.c that connect the low-level canbus hardware code to the high-level canserial.c code. This is in preparation for adding "usb to canbus bridge mode". Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-27usb_cdc_ep: Change default endpoint numbersKevin O'Connor
Change the default endpoint numbers to make it possible to implement the "gs_usb" canbus protocol. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-27stm32: Add support for disabling the canbus filterKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-27stm32: Add MCU temp for Stm32h7 (#5606)adelyser
Added mcu temperature to the stm32h7 processor. Signed-off-by: Aaron DeLyser <bluwolf@gmail.com>
2022-06-27klippy: properly set log level when logging to stderrKamil Trzciński
The `logging.basicConfig` does not reconfigure default logger. This results in printing only warnings/errors to stderr instead of also info (or debug). This fixes the issue by setting log level on root logger. Signed-off-by: Kamil Trzciński <ayufan@ayufan.eu>
2022-06-27docs: add SET_DISPLAY_TEXT documentationEric Callahan
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-06-27display_status: Implement SET_DISPLAY_TEXT commandEric Callahan
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
2022-06-27docs: remove FAQ ToC (#5585)Yifei Ding
Signed-off-by: Yifei Ding <yifeiding@protonmail.com>
2022-06-20rp2040: Add a Kconfig option for selecting "generic_03H" flash typeKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-20rp2040: Add options to Kconfig for "stage2" flash chip optionsKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2022-06-20docs: Note mcu types with i2c_speed support in Config_Reference.mdKevin O'Connor
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>