├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── pio-build.yaml │ ├── pio-release.yaml │ └── pio-test.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── PINOUTS.md ├── README.md ├── _config.yml ├── avr_compiler.py ├── boards ├── esp32-s3-devkitc1-n16r8.json ├── genericSTM32F0.json ├── generic_stm32h723zg.json └── marlin_STM32H723ZG.json ├── custom_variants └── MARLIN_H723ZG │ ├── PeripheralPins.c │ ├── PinNamesVar.h │ ├── ldscript.ld │ ├── variant_MARLIN_STM32H723ZG.cpp │ └── variant_MARLIN_STM32H723ZG.h ├── data └── README.md ├── dependencies.lock ├── docs ├── AVR103.pdf ├── Arduino-M0-pinout.jpg ├── ESP32-C3-pinout.jpg ├── ESP32-S3-pinout.webp ├── InvSqrt.pdf ├── arduino-mega-pinout-diagram.png ├── arduino-uno-pinout-diagram.svg ├── debug_launch.json ├── discord-logo-blue.png ├── logo.png ├── mcumap_gen.xlsx ├── raspberrypi-pico-w-pinout.png ├── re-arm-lpc1768-pinout.jpg ├── rs274ngc.pdf ├── stm32-black-pill-pinout.png ├── stm32-blue-pill-pinout.png ├── wemos-d1-mini.png └── wemos-d1-r32.png ├── makefiles ├── .gitignore ├── avr │ ├── main.c │ └── makefile ├── samd21 │ ├── Makefile │ ├── arduino_zero_debug.cfg │ ├── drivers │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_version.h │ │ ├── component-version.h │ │ ├── component │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── gclk.h │ │ │ ├── hmatrixb.h │ │ │ ├── i2s.h │ │ │ ├── mtb.h │ │ │ ├── nvmctrl.h │ │ │ ├── pac.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── rtc.h │ │ │ ├── sercom.h │ │ │ ├── sysctrl.h │ │ │ ├── tc.h │ │ │ ├── tcc.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── core_cm0plus.h │ │ ├── instance │ │ │ ├── ac.h │ │ │ ├── adc.h │ │ │ ├── dac.h │ │ │ ├── dmac.h │ │ │ ├── dsu.h │ │ │ ├── eic.h │ │ │ ├── evsys.h │ │ │ ├── gclk.h │ │ │ ├── i2s.h │ │ │ ├── mtb.h │ │ │ ├── nvmctrl.h │ │ │ ├── pac0.h │ │ │ ├── pac1.h │ │ │ ├── pac2.h │ │ │ ├── pm.h │ │ │ ├── port.h │ │ │ ├── ptc.h │ │ │ ├── rtc.h │ │ │ ├── sbmatrix.h │ │ │ ├── sercom0.h │ │ │ ├── sercom1.h │ │ │ ├── sercom2.h │ │ │ ├── sercom3.h │ │ │ ├── sercom4.h │ │ │ ├── sercom5.h │ │ │ ├── sysctrl.h │ │ │ ├── tc3.h │ │ │ ├── tc4.h │ │ │ ├── tc5.h │ │ │ ├── tc6.h │ │ │ ├── tc7.h │ │ │ ├── tcc0.h │ │ │ ├── tcc1.h │ │ │ ├── tcc2.h │ │ │ ├── usb.h │ │ │ └── wdt.h │ │ ├── pio │ │ │ ├── samd21e15a.h │ │ │ ├── samd21e16a.h │ │ │ ├── samd21e17a.h │ │ │ ├── samd21e18a.h │ │ │ ├── samd21g15a.h │ │ │ ├── samd21g16a.h │ │ │ ├── samd21g17a.h │ │ │ ├── samd21g17au.h │ │ │ ├── samd21g18a.h │ │ │ ├── samd21g18au.h │ │ │ ├── samd21j15a.h │ │ │ ├── samd21j16a.h │ │ │ ├── samd21j17a.h │ │ │ └── samd21j18a.h │ │ ├── sam.h │ │ ├── samd21.h │ │ ├── samd21e15a.h │ │ ├── samd21e16a.h │ │ ├── samd21e17a.h │ │ ├── samd21e18a.h │ │ ├── samd21g15a.h │ │ ├── samd21g16a.h │ │ ├── samd21g17a.h │ │ ├── samd21g17au.h │ │ ├── samd21g18a.h │ │ ├── samd21g18au.h │ │ ├── samd21j15a.h │ │ ├── samd21j16a.h │ │ ├── samd21j17a.h │ │ ├── samd21j18a.h │ │ └── system_samd21.h │ ├── main.c │ ├── samd21.c │ └── samd21.ld ├── stm32f1x │ ├── Makefile │ ├── bluepill-debug.bat │ ├── bluepill_debug.cfg │ ├── drivers │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_version.h │ │ ├── core_cm3.c │ │ ├── core_cm3.h │ │ ├── stm32f100xb.h │ │ ├── stm32f100xe.h │ │ ├── stm32f101x6.h │ │ ├── stm32f101xb.h │ │ ├── stm32f101xe.h │ │ ├── stm32f101xg.h │ │ ├── stm32f102x6.h │ │ ├── stm32f102xb.h │ │ ├── stm32f103x6.h │ │ ├── stm32f103xb.h │ │ ├── stm32f103xe.h │ │ ├── stm32f103xg.h │ │ ├── stm32f105xc.h │ │ ├── stm32f107xc.h │ │ ├── stm32f1xx.h │ │ ├── system_stm32f1xx.c │ │ └── system_stm32f1xx.h │ ├── main.c │ ├── stm32f1x.c │ └── stm32f1x.ld ├── stm32f4x │ ├── Makefile │ ├── blackpill_debug.cfg │ ├── drivers │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_version.h │ │ ├── core_cm4.h │ │ ├── mpu_armv7.h │ │ ├── stm32f401xc.h │ │ ├── stm32f401xe.h │ │ ├── stm32f405xx.h │ │ ├── stm32f407xx.h │ │ ├── stm32f410cx.h │ │ ├── stm32f410rx.h │ │ ├── stm32f410tx.h │ │ ├── stm32f411xe.h │ │ ├── stm32f412cx.h │ │ ├── stm32f412rx.h │ │ ├── stm32f412vx.h │ │ ├── stm32f412zx.h │ │ ├── stm32f413xx.h │ │ ├── stm32f415xx.h │ │ ├── stm32f417xx.h │ │ ├── stm32f423xx.h │ │ ├── stm32f427xx.h │ │ ├── stm32f429xx.h │ │ ├── stm32f437xx.h │ │ ├── stm32f439xx.h │ │ ├── stm32f446xx.h │ │ ├── stm32f469xx.h │ │ ├── stm32f479xx.h │ │ ├── stm32f4xx.h │ │ ├── system_stm32f4xx.c │ │ └── system_stm32f4xx.h │ ├── main.c │ ├── stm32f4x.c │ └── stm32f4x.ld └── virtual │ ├── README.md │ ├── WindowsSerial.cpp │ ├── WindowsSerial.h │ ├── clib │ ├── mui.c │ ├── mui.h │ ├── mui_u8g2.c │ ├── mui_u8g2.h │ ├── u8g2.h │ ├── u8g2_bitmap.c │ ├── u8g2_box.c │ ├── u8g2_buffer.c │ ├── u8g2_button.c │ ├── u8g2_circle.c │ ├── u8g2_cleardisplay.c │ ├── u8g2_d_memory.c │ ├── u8g2_d_setup.c │ ├── u8g2_font.c │ ├── u8g2_fonts.c │ ├── u8g2_hvline.c │ ├── u8g2_input_value.c │ ├── u8g2_intersection.c │ ├── u8g2_kerning.c │ ├── u8g2_line.c │ ├── u8g2_ll_hvline.c │ ├── u8g2_message.c │ ├── u8g2_polygon.c │ ├── u8g2_selection_list.c │ ├── u8g2_setup.c │ ├── u8log.c │ ├── u8log_u8g2.c │ ├── u8log_u8x8.c │ ├── u8x8.h │ ├── u8x8_8x8.c │ ├── u8x8_byte.c │ ├── u8x8_cad.c │ ├── u8x8_capture.c │ ├── u8x8_d_a2printer.c │ ├── u8x8_d_gp1247ai.c │ ├── u8x8_d_gp1287ai.c │ ├── u8x8_d_gu800.c │ ├── u8x8_d_hd44102.c │ ├── u8x8_d_il3820_296x128.c │ ├── u8x8_d_ist3020.c │ ├── u8x8_d_ist3088.c │ ├── u8x8_d_ist7920.c │ ├── u8x8_d_ks0108.c │ ├── u8x8_d_lc7981.c │ ├── u8x8_d_ld7032_60x32.c │ ├── u8x8_d_ls013b7dh03.c │ ├── u8x8_d_max7219.c │ ├── u8x8_d_pcd8544_84x48.c │ ├── u8x8_d_pcf8812.c │ ├── u8x8_d_pcf8814_hx1230.c │ ├── u8x8_d_s1d15721.c │ ├── u8x8_d_s1d15e06.c │ ├── u8x8_d_sbn1661.c │ ├── u8x8_d_sdl_128x64.c │ ├── u8x8_d_sed1330.c │ ├── u8x8_d_sh1106_64x32.c │ ├── u8x8_d_sh1106_72x40.c │ ├── u8x8_d_sh1107.c │ ├── u8x8_d_sh1108.c │ ├── u8x8_d_sh1122.c │ ├── u8x8_d_ssd1305.c │ ├── u8x8_d_ssd1306_128x32.c │ ├── u8x8_d_ssd1306_128x64_noname.c │ ├── u8x8_d_ssd1306_2040x16.c │ ├── u8x8_d_ssd1306_48x64.c │ ├── u8x8_d_ssd1306_64x32.c │ ├── u8x8_d_ssd1306_64x48.c │ ├── u8x8_d_ssd1306_72x40.c │ ├── u8x8_d_ssd1306_96x16.c │ ├── u8x8_d_ssd1306_96x40.c │ ├── u8x8_d_ssd1309.c │ ├── u8x8_d_ssd1316.c │ ├── u8x8_d_ssd1317.c │ ├── u8x8_d_ssd1318.c │ ├── u8x8_d_ssd1320.c │ ├── u8x8_d_ssd1322.c │ ├── u8x8_d_ssd1325.c │ ├── u8x8_d_ssd1326.c │ ├── u8x8_d_ssd1327.c │ ├── u8x8_d_ssd1329.c │ ├── u8x8_d_ssd1606_172x72.c │ ├── u8x8_d_ssd1607_200x200.c │ ├── u8x8_d_st7511.c │ ├── u8x8_d_st75160.c │ ├── u8x8_d_st75256.c │ ├── u8x8_d_st7528.c │ ├── u8x8_d_st75320.c │ ├── u8x8_d_st7565.c │ ├── u8x8_d_st7567.c │ ├── u8x8_d_st7571.c │ ├── u8x8_d_st7586s_erc240160.c │ ├── u8x8_d_st7586s_jlx384160.c │ ├── u8x8_d_st7586s_s028hn118a.c │ ├── u8x8_d_st7586s_ymc240160.c │ ├── u8x8_d_st7588.c │ ├── u8x8_d_st7920.c │ ├── u8x8_d_stdio.c │ ├── u8x8_d_t6963.c │ ├── u8x8_d_uc1601.c │ ├── u8x8_d_uc1604.c │ ├── u8x8_d_uc1608.c │ ├── u8x8_d_uc1609.c │ ├── u8x8_d_uc1610.c │ ├── u8x8_d_uc1611.c │ ├── u8x8_d_uc1617.c │ ├── u8x8_d_uc1638.c │ ├── u8x8_d_uc1701_dogs102.c │ ├── u8x8_d_uc1701_mini12864.c │ ├── u8x8_debounce.c │ ├── u8x8_display.c │ ├── u8x8_fonts.c │ ├── u8x8_gpio.c │ ├── u8x8_input_value.c │ ├── u8x8_message.c │ ├── u8x8_sdl_key.c │ ├── u8x8_selection_list.c │ ├── u8x8_setup.c │ ├── u8x8_string.c │ ├── u8x8_u16toa.c │ └── u8x8_u8toa.c │ ├── expressions.nc │ ├── makefile │ ├── mcu_virtual.cpp │ ├── namedparams.nc │ ├── o100.nc │ ├── o110.nc │ ├── o111.nc │ ├── uCNC-emulator.dev │ └── uCNC.dev ├── min_spiffs.csv ├── platformio.ini ├── sdkconfig.defaults ├── tests ├── arduino_math │ └── arduino_math.ino └── gcode │ ├── circle.nc │ ├── curves-as-lines.nc │ ├── expressions.nc │ ├── motion-tests-hmap.nc │ ├── motion-tests.nc │ ├── motion_modes-tests.nc │ ├── namedparams.nc │ ├── override-tests.nc │ ├── sample.nc │ └── stress-tests.nc ├── uCNC ├── README.md ├── boardmap_overrides.h ├── build_opt.h ├── cnc_config.h ├── cnc_hal_config.h ├── cnc_hal_overrides.h ├── src │ ├── README.md │ ├── cnc.c │ ├── cnc.h │ ├── cnc_build.h │ ├── cnc_hal_config_helper.h │ ├── core │ │ ├── interpolator.c │ │ ├── interpolator.h │ │ ├── io_control.c │ │ ├── io_control.h │ │ ├── motion_control.c │ │ ├── motion_control.h │ │ ├── parser.c │ │ ├── parser.h │ │ ├── parser_expr.c │ │ ├── planner.c │ │ └── planner.h │ ├── hal │ │ ├── boards │ │ │ ├── .gitignore │ │ │ ├── avr │ │ │ │ ├── avr.ini │ │ │ │ ├── boardmap_mega_shield_v3.h │ │ │ │ ├── boardmap_melzi_v114.h │ │ │ │ ├── boardmap_mks_dlc.h │ │ │ │ ├── boardmap_mks_gen_l_v1.h │ │ │ │ ├── boardmap_rambo14.h │ │ │ │ ├── boardmap_ramps14.h │ │ │ │ ├── boardmap_ramps14_mirror.h │ │ │ │ ├── boardmap_uno.h │ │ │ │ ├── boardmap_uno_shield_v3.h │ │ │ │ └── boardmap_x_controller.h │ │ │ ├── boarddefs.h │ │ │ ├── boards_helper.h │ │ │ ├── esp32 │ │ │ │ ├── boardmap_core_c3.h │ │ │ │ ├── boardmap_devkit_s3.h │ │ │ │ ├── boardmap_esp32_shield_v3.h │ │ │ │ ├── boardmap_mks_dlc32.h │ │ │ │ ├── boardmap_mks_dlc32_s3.h │ │ │ │ ├── boardmap_mks_tinybee.h │ │ │ │ ├── boardmap_wemos_d1_r32.h │ │ │ │ └── esp32.ini │ │ │ ├── esp8266 │ │ │ │ ├── boardmap_wemos_d1.h │ │ │ │ └── esp8266.ini │ │ │ ├── lpc176x │ │ │ │ ├── boardmap_mks_base13.h │ │ │ │ ├── boardmap_re_arm.h │ │ │ │ ├── boardmap_skr_v14_turbo.h │ │ │ │ └── lpc176x.ini │ │ │ ├── pin_mapping_helper.h │ │ │ ├── rp2040 │ │ │ │ ├── boardmap_rpi_pico.h │ │ │ │ ├── boardmap_rpi_pico_w.h │ │ │ │ └── rp2040.ini │ │ │ ├── rp2350 │ │ │ │ ├── boardmap_rpi_pico2.h │ │ │ │ └── rp2350.ini │ │ │ ├── samd21 │ │ │ │ ├── arduino_zero_debug.cfg │ │ │ │ ├── boardmap_mzero.h │ │ │ │ ├── boardmap_zero.h │ │ │ │ └── samd21.ini │ │ │ └── stm32 │ │ │ │ ├── bluepill_debug_cmsis_dap.cfg │ │ │ │ ├── bluepill_debug_stlink.cfg │ │ │ │ ├── boardmap_blackpill.h │ │ │ │ ├── boardmap_bluepill.h │ │ │ │ ├── boardmap_bluepill_f0.h │ │ │ │ ├── boardmap_fysetc_cheetah_v2.h │ │ │ │ ├── boardmap_generic_h750.h │ │ │ │ ├── boardmap_mks_robin_nano_V3_1.h │ │ │ │ ├── boardmap_mks_robin_nano_v1_2.h │ │ │ │ ├── boardmap_mks_robin_nano_v3_1.h │ │ │ │ ├── boardmap_nucleo_f411re_shield_v3.h │ │ │ │ ├── boardmap_skr3.h │ │ │ │ ├── boardmap_srk_pro_v1_2.h │ │ │ │ └── stm32.ini │ │ ├── io_hal.h │ │ ├── kinematics │ │ │ ├── README.md │ │ │ ├── kinematic.c │ │ │ ├── kinematic.h │ │ │ ├── kinematic_cartesian.c │ │ │ ├── kinematic_cartesian.h │ │ │ ├── kinematic_corexy.c │ │ │ ├── kinematic_corexy.h │ │ │ ├── kinematic_delta.c │ │ │ ├── kinematic_delta.h │ │ │ ├── kinematic_dummy.c │ │ │ ├── kinematic_dummy.h │ │ │ ├── kinematic_linear_delta.c │ │ │ ├── kinematic_linear_delta.h │ │ │ ├── kinematic_rtheta.c │ │ │ ├── kinematic_rtheta.h │ │ │ ├── kinematic_scara.c │ │ │ ├── kinematic_scara.h │ │ │ ├── kinematicdefs.h │ │ │ ├── kinematics.h │ │ │ └── uCNC kinematics.pdf │ │ ├── mcus │ │ │ ├── README.md │ │ │ ├── avr │ │ │ │ ├── README.md │ │ │ │ ├── mcu_avr.c │ │ │ │ └── mcumap_avr.h │ │ │ ├── esp32 │ │ │ │ ├── README.md │ │ │ │ ├── esp32_bt.cpp │ │ │ │ ├── esp32_eeprom.c │ │ │ │ ├── esp32_i2s.c │ │ │ │ ├── esp32_spi.c │ │ │ │ ├── mcu_esp32.c │ │ │ │ └── mcumap_esp32.h │ │ │ ├── esp32c3 │ │ │ │ ├── README.md │ │ │ │ ├── esp32c3_i2s.c │ │ │ │ ├── mcu_esp32c3.c │ │ │ │ └── mcumap_esp32c3.h │ │ │ ├── esp32common │ │ │ │ ├── esp32_common.h │ │ │ │ ├── esp32_eeprom.cpp │ │ │ │ ├── esp32_i2c.cpp │ │ │ │ ├── esp32_signal.c │ │ │ │ ├── esp32_spi.cpp │ │ │ │ ├── esp32_uart.c │ │ │ │ ├── esp32_usb.cpp │ │ │ │ └── esp32_wifi.cpp │ │ │ ├── esp32s3 │ │ │ │ ├── README.md │ │ │ │ ├── esp32s3_i2s.c │ │ │ │ ├── mcu_esp32s3.c │ │ │ │ └── mcumap_esp32s3.h │ │ │ ├── esp8266 │ │ │ │ ├── README.md │ │ │ │ ├── esp8266_eeprom.c │ │ │ │ ├── esp8266_signal.c │ │ │ │ ├── esp8266_spi.c │ │ │ │ ├── esp8266_uart.c │ │ │ │ ├── esp8266_wifi.cpp │ │ │ │ ├── mcu_esp8266.c │ │ │ │ └── mcumap_esp8266.h │ │ │ ├── lpc176x │ │ │ │ ├── README.md │ │ │ │ ├── lpc176x_arduino.cpp │ │ │ │ ├── mcu_lpc176x.c │ │ │ │ └── mcumap_lpc176x.h │ │ │ ├── mcu.c │ │ │ ├── mcu.h │ │ │ ├── mcudefs.h │ │ │ ├── mcus.h │ │ │ ├── rp2040 │ │ │ │ ├── README.md │ │ │ │ ├── ic74hc595.pio │ │ │ │ ├── ic74hc595.pio.h │ │ │ │ ├── mcu_rp2040.c │ │ │ │ ├── mcumap_rp2040.h │ │ │ │ └── rp2040_arduino.cpp │ │ │ ├── rp2350 │ │ │ │ ├── README.md │ │ │ │ ├── ic74hc595.pio │ │ │ │ ├── ic74hc595.pio.h │ │ │ │ ├── mcu_rp2350.c │ │ │ │ ├── mcumap_rp2350.h │ │ │ │ └── rp2350_arduino.cpp │ │ │ ├── samd21 │ │ │ │ ├── README.md │ │ │ │ ├── mcu_samd21.c │ │ │ │ └── mcumap_samd21.h │ │ │ ├── stm32f0x │ │ │ │ ├── README.md │ │ │ │ ├── mcu_stm32f0x.c │ │ │ │ └── mcumap_stm32f0x.h │ │ │ ├── stm32f1x │ │ │ │ ├── README.md │ │ │ │ ├── mcu_stm32f1x.c │ │ │ │ └── mcumap_stm32f1x.h │ │ │ ├── stm32f4x │ │ │ │ ├── README.md │ │ │ │ ├── mcu_stm32f4x.c │ │ │ │ ├── mcumap_stm32f4x.h │ │ │ │ ├── stm32f4x.c │ │ │ │ └── stm32f4x.ld │ │ │ ├── stm32h7x │ │ │ │ ├── README.md │ │ │ │ ├── mcu_stm32h7x.c │ │ │ │ ├── mcumap_stm32h7x.h │ │ │ │ ├── stm32h723zg.ld │ │ │ │ └── stm32h7x_arduino.cpp │ │ │ └── virtual │ │ │ │ ├── mcumap_virtual.h │ │ │ │ ├── virtual.ini │ │ │ │ └── win_compiler.py │ │ └── tools │ │ │ ├── README.md │ │ │ ├── tool.c │ │ │ ├── tool.h │ │ │ ├── tool_helper.h │ │ │ └── tools │ │ │ ├── README.md │ │ │ ├── laser_ppi.c │ │ │ ├── laser_pwm.c │ │ │ ├── pen_servo.c │ │ │ ├── plasma_thc.c │ │ │ ├── spindle_besc.c │ │ │ ├── spindle_pwm.c │ │ │ ├── spindle_relay.c │ │ │ ├── vfd_modbus.c │ │ │ └── vfd_pwm.c │ ├── interface │ │ ├── defaults.h │ │ ├── grbl_interface.h │ │ ├── grbl_print.c │ │ ├── grbl_print.h │ │ ├── grbl_protocol.c │ │ ├── grbl_protocol.h │ │ ├── grbl_settings.c │ │ ├── grbl_settings.h │ │ ├── grbl_stream.c │ │ ├── grbl_stream.h │ │ └── serial_compatibility.h │ ├── module.c │ ├── module.h │ ├── modules │ │ ├── digimstep.c │ │ ├── digimstep.h │ │ ├── digipot.c │ │ ├── digipot.h │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── endpoint.h │ │ ├── file_system.c │ │ ├── file_system.h │ │ ├── ic74hc165.h │ │ ├── ic74hc595.h │ │ ├── language │ │ │ └── language_en.h │ │ ├── modbus.c │ │ ├── modbus.h │ │ ├── pid.c │ │ ├── pid.h │ │ ├── shift_register.c │ │ ├── shift_register.h │ │ ├── softi2c.c │ │ ├── softi2c.h │ │ ├── softspi.c │ │ ├── softspi.h │ │ ├── softuart.c │ │ ├── softuart.h │ │ ├── system_languages.h │ │ ├── system_menu.c │ │ ├── system_menu.h │ │ ├── system_menu.md │ │ └── websocket.h │ ├── utils.c │ └── utils.h └── uCNC.ino └── ucnc_modules.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=C 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pio-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/.github/workflows/pio-build.yaml -------------------------------------------------------------------------------- /.github/workflows/pio-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/.github/workflows/pio-release.yaml -------------------------------------------------------------------------------- /.github/workflows/pio-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/.github/workflows/pio-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/LICENSE -------------------------------------------------------------------------------- /PINOUTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/PINOUTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/_config.yml -------------------------------------------------------------------------------- /avr_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/avr_compiler.py -------------------------------------------------------------------------------- /boards/esp32-s3-devkitc1-n16r8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/boards/esp32-s3-devkitc1-n16r8.json -------------------------------------------------------------------------------- /boards/genericSTM32F0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/boards/genericSTM32F0.json -------------------------------------------------------------------------------- /boards/generic_stm32h723zg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/boards/generic_stm32h723zg.json -------------------------------------------------------------------------------- /boards/marlin_STM32H723ZG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/boards/marlin_STM32H723ZG.json -------------------------------------------------------------------------------- /custom_variants/MARLIN_H723ZG/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/custom_variants/MARLIN_H723ZG/PeripheralPins.c -------------------------------------------------------------------------------- /custom_variants/MARLIN_H723ZG/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/custom_variants/MARLIN_H723ZG/PinNamesVar.h -------------------------------------------------------------------------------- /custom_variants/MARLIN_H723ZG/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/custom_variants/MARLIN_H723ZG/ldscript.ld -------------------------------------------------------------------------------- /custom_variants/MARLIN_H723ZG/variant_MARLIN_STM32H723ZG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/custom_variants/MARLIN_H723ZG/variant_MARLIN_STM32H723ZG.cpp -------------------------------------------------------------------------------- /custom_variants/MARLIN_H723ZG/variant_MARLIN_STM32H723ZG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/custom_variants/MARLIN_H723ZG/variant_MARLIN_STM32H723ZG.h -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/data/README.md -------------------------------------------------------------------------------- /dependencies.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/dependencies.lock -------------------------------------------------------------------------------- /docs/AVR103.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/AVR103.pdf -------------------------------------------------------------------------------- /docs/Arduino-M0-pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/Arduino-M0-pinout.jpg -------------------------------------------------------------------------------- /docs/ESP32-C3-pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/ESP32-C3-pinout.jpg -------------------------------------------------------------------------------- /docs/ESP32-S3-pinout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/ESP32-S3-pinout.webp -------------------------------------------------------------------------------- /docs/InvSqrt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/InvSqrt.pdf -------------------------------------------------------------------------------- /docs/arduino-mega-pinout-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/arduino-mega-pinout-diagram.png -------------------------------------------------------------------------------- /docs/arduino-uno-pinout-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/arduino-uno-pinout-diagram.svg -------------------------------------------------------------------------------- /docs/debug_launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/debug_launch.json -------------------------------------------------------------------------------- /docs/discord-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/discord-logo-blue.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/mcumap_gen.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/mcumap_gen.xlsx -------------------------------------------------------------------------------- /docs/raspberrypi-pico-w-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/raspberrypi-pico-w-pinout.png -------------------------------------------------------------------------------- /docs/re-arm-lpc1768-pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/re-arm-lpc1768-pinout.jpg -------------------------------------------------------------------------------- /docs/rs274ngc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/rs274ngc.pdf -------------------------------------------------------------------------------- /docs/stm32-black-pill-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/stm32-black-pill-pinout.png -------------------------------------------------------------------------------- /docs/stm32-blue-pill-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/stm32-blue-pill-pinout.png -------------------------------------------------------------------------------- /docs/wemos-d1-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/wemos-d1-mini.png -------------------------------------------------------------------------------- /docs/wemos-d1-r32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/docs/wemos-d1-r32.png -------------------------------------------------------------------------------- /makefiles/.gitignore: -------------------------------------------------------------------------------- 1 | !*.cfg -------------------------------------------------------------------------------- /makefiles/avr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/avr/main.c -------------------------------------------------------------------------------- /makefiles/avr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/avr/makefile -------------------------------------------------------------------------------- /makefiles/samd21/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/Makefile -------------------------------------------------------------------------------- /makefiles/samd21/arduino_zero_debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/arduino_zero_debug.cfg -------------------------------------------------------------------------------- /makefiles/samd21/drivers/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/cmsis_compiler.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/cmsis_gcc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/cmsis_version.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component-version.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/ac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/adc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/dac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/dmac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/dsu.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/eic.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/evsys.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/gclk.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/hmatrixb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/hmatrixb.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/i2s.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/mtb.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/nvmctrl.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/pac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/pm.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/port.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/rtc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/sercom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/sercom.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/sysctrl.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/tc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/tcc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/usb.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/component/wdt.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/core_cm0plus.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/ac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/adc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/dac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/dmac.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/dsu.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/eic.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/evsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/evsys.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/gclk.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/i2s.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/mtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/mtb.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/nvmctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/nvmctrl.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/pac0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/pac0.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/pac1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/pac1.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/pac2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/pac2.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/pm.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/port.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/ptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/ptc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/rtc.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sbmatrix.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sercom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sercom0.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sercom1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sercom1.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sercom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sercom2.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sercom3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sercom3.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sercom4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sercom4.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sercom5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sercom5.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/sysctrl.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tc3.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tc4.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tc5.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tc6.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tc7.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tcc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tcc0.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tcc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tcc1.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/tcc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/tcc2.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/usb.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/instance/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/instance/wdt.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21e15a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21e16a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21e17a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21e18a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21g15a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21g16a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21g17a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21g17au.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21g18a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21g18au.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21j15a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21j16a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21j17a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/pio/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/pio/samd21j18a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/sam.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21e15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21e15a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21e16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21e16a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21e17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21e17a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21e18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21e18a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21g15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21g15a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21g16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21g16a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21g17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21g17a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21g17au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21g17au.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21g18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21g18a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21g18au.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21g18au.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21j15a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21j15a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21j16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21j16a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21j17a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21j17a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/samd21j18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/samd21j18a.h -------------------------------------------------------------------------------- /makefiles/samd21/drivers/system_samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/drivers/system_samd21.h -------------------------------------------------------------------------------- /makefiles/samd21/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/main.c -------------------------------------------------------------------------------- /makefiles/samd21/samd21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/samd21.c -------------------------------------------------------------------------------- /makefiles/samd21/samd21.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/samd21/samd21.ld -------------------------------------------------------------------------------- /makefiles/stm32f1x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/Makefile -------------------------------------------------------------------------------- /makefiles/stm32f1x/bluepill-debug.bat: -------------------------------------------------------------------------------- 1 | openocd -f bluepill_debug.cfg 2 | -------------------------------------------------------------------------------- /makefiles/stm32f1x/bluepill_debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/bluepill_debug.cfg -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/cmsis_compiler.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/cmsis_gcc.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/cmsis_version.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/core_cm3.c -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/core_cm3.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f100xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f100xb.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f100xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f100xe.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f101x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f101x6.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f101xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f101xb.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f101xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f101xe.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f101xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f101xg.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f102x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f102x6.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f102xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f102xb.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f103x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f103x6.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f103xb.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f103xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f103xe.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f103xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f103xg.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f105xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f105xc.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f107xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f107xc.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/stm32f1xx.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/system_stm32f1xx.c -------------------------------------------------------------------------------- /makefiles/stm32f1x/drivers/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/drivers/system_stm32f1xx.h -------------------------------------------------------------------------------- /makefiles/stm32f1x/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/main.c -------------------------------------------------------------------------------- /makefiles/stm32f1x/stm32f1x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/stm32f1x.c -------------------------------------------------------------------------------- /makefiles/stm32f1x/stm32f1x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f1x/stm32f1x.ld -------------------------------------------------------------------------------- /makefiles/stm32f4x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/Makefile -------------------------------------------------------------------------------- /makefiles/stm32f4x/blackpill_debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/blackpill_debug.cfg -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/cmsis_compiler.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/cmsis_gcc.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/cmsis_version.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/core_cm4.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/mpu_armv7.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f401xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f401xc.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f401xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f401xe.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f405xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f405xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f407xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f410cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f410cx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f410rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f410rx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f410tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f410tx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f411xe.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f412cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f412cx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f412rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f412rx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f412vx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f412vx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f412zx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f412zx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f413xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f413xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f415xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f415xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f417xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f417xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f423xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f423xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f427xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f427xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f429xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f429xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f437xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f437xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f439xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f439xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f446xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f446xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f469xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f469xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f479xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f479xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/stm32f4xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/system_stm32f4xx.c -------------------------------------------------------------------------------- /makefiles/stm32f4x/drivers/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/drivers/system_stm32f4xx.h -------------------------------------------------------------------------------- /makefiles/stm32f4x/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/main.c -------------------------------------------------------------------------------- /makefiles/stm32f4x/stm32f4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/stm32f4x.c -------------------------------------------------------------------------------- /makefiles/stm32f4x/stm32f4x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/stm32f4x/stm32f4x.ld -------------------------------------------------------------------------------- /makefiles/virtual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/README.md -------------------------------------------------------------------------------- /makefiles/virtual/WindowsSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/WindowsSerial.cpp -------------------------------------------------------------------------------- /makefiles/virtual/WindowsSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/WindowsSerial.h -------------------------------------------------------------------------------- /makefiles/virtual/clib/mui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/mui.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/mui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/mui.h -------------------------------------------------------------------------------- /makefiles/virtual/clib/mui_u8g2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/mui_u8g2.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/mui_u8g2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/mui_u8g2.h -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2.h -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_bitmap.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_box.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_buffer.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_button.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_circle.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_cleardisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_cleardisplay.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_d_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_d_memory.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_d_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_d_setup.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_font.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_fonts.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_hvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_hvline.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_input_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_input_value.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_intersection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_intersection.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_kerning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_kerning.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_line.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_ll_hvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_ll_hvline.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_message.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_polygon.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_selection_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_selection_list.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8g2_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8g2_setup.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8log.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8log_u8g2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8log_u8g2.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8log_u8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8log_u8x8.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8.h -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_8x8.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_byte.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_cad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_cad.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_capture.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_a2printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_a2printer.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_gp1247ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_gp1247ai.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_gp1287ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_gp1287ai.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_gu800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_gu800.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_hd44102.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_hd44102.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_il3820_296x128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_il3820_296x128.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ist3020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ist3020.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ist3088.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ist3088.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ist7920.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ist7920.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ks0108.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ks0108.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_lc7981.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_lc7981.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ld7032_60x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ld7032_60x32.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ls013b7dh03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ls013b7dh03.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_max7219.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_max7219.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_pcd8544_84x48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_pcd8544_84x48.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_pcf8812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_pcf8812.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_pcf8814_hx1230.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_pcf8814_hx1230.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_s1d15721.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_s1d15721.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_s1d15e06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_s1d15e06.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sbn1661.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sbn1661.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sdl_128x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sdl_128x64.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sed1330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sed1330.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sh1106_64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sh1106_64x32.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sh1106_72x40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sh1106_72x40.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sh1107.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sh1107.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sh1108.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sh1108.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_sh1122.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_sh1122.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1305.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_128x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_128x32.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_128x64_noname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_128x64_noname.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_2040x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_2040x16.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_48x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_48x64.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_64x32.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_64x48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_64x48.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_72x40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_72x40.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_96x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_96x16.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1306_96x40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1306_96x40.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1309.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1309.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1316.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1316.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1317.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1317.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1318.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1318.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1320.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1322.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1325.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1325.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1326.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1326.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1327.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1327.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1329.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1329.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1606_172x72.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1606_172x72.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_ssd1607_200x200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_ssd1607_200x200.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7511.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7511.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st75160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st75160.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st75256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st75256.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7528.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7528.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st75320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st75320.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7565.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7567.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7567.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7571.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7571.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7586s_erc240160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7586s_erc240160.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7586s_jlx384160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7586s_jlx384160.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7586s_s028hn118a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7586s_s028hn118a.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7586s_ymc240160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7586s_ymc240160.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7588.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7588.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_st7920.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_st7920.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_stdio.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_t6963.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_t6963.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1601.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1601.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1604.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1604.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1608.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1609.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1609.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1610.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1610.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1611.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1611.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1617.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1617.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1638.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1638.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1701_dogs102.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1701_dogs102.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_d_uc1701_mini12864.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_d_uc1701_mini12864.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_debounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_debounce.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_display.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_fonts.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_gpio.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_input_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_input_value.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_message.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_sdl_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_sdl_key.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_selection_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_selection_list.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_setup.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_string.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_u16toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_u16toa.c -------------------------------------------------------------------------------- /makefiles/virtual/clib/u8x8_u8toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/clib/u8x8_u8toa.c -------------------------------------------------------------------------------- /makefiles/virtual/expressions.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/expressions.nc -------------------------------------------------------------------------------- /makefiles/virtual/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/makefile -------------------------------------------------------------------------------- /makefiles/virtual/mcu_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/mcu_virtual.cpp -------------------------------------------------------------------------------- /makefiles/virtual/namedparams.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/namedparams.nc -------------------------------------------------------------------------------- /makefiles/virtual/o100.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/o100.nc -------------------------------------------------------------------------------- /makefiles/virtual/o110.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/o110.nc -------------------------------------------------------------------------------- /makefiles/virtual/o111.nc: -------------------------------------------------------------------------------- 1 | (msg, returning to top) 2 | -------------------------------------------------------------------------------- /makefiles/virtual/uCNC-emulator.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/uCNC-emulator.dev -------------------------------------------------------------------------------- /makefiles/virtual/uCNC.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/makefiles/virtual/uCNC.dev -------------------------------------------------------------------------------- /min_spiffs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/min_spiffs.csv -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/platformio.ini -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/sdkconfig.defaults -------------------------------------------------------------------------------- /tests/arduino_math/arduino_math.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/arduino_math/arduino_math.ino -------------------------------------------------------------------------------- /tests/gcode/circle.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/circle.nc -------------------------------------------------------------------------------- /tests/gcode/curves-as-lines.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/curves-as-lines.nc -------------------------------------------------------------------------------- /tests/gcode/expressions.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/expressions.nc -------------------------------------------------------------------------------- /tests/gcode/motion-tests-hmap.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/motion-tests-hmap.nc -------------------------------------------------------------------------------- /tests/gcode/motion-tests.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/motion-tests.nc -------------------------------------------------------------------------------- /tests/gcode/motion_modes-tests.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/motion_modes-tests.nc -------------------------------------------------------------------------------- /tests/gcode/namedparams.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/namedparams.nc -------------------------------------------------------------------------------- /tests/gcode/override-tests.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/override-tests.nc -------------------------------------------------------------------------------- /tests/gcode/sample.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/sample.nc -------------------------------------------------------------------------------- /tests/gcode/stress-tests.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/tests/gcode/stress-tests.nc -------------------------------------------------------------------------------- /uCNC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/README.md -------------------------------------------------------------------------------- /uCNC/boardmap_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/boardmap_overrides.h -------------------------------------------------------------------------------- /uCNC/build_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/build_opt.h -------------------------------------------------------------------------------- /uCNC/cnc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/cnc_config.h -------------------------------------------------------------------------------- /uCNC/cnc_hal_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/cnc_hal_config.h -------------------------------------------------------------------------------- /uCNC/cnc_hal_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/cnc_hal_overrides.h -------------------------------------------------------------------------------- /uCNC/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/README.md -------------------------------------------------------------------------------- /uCNC/src/cnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/cnc.c -------------------------------------------------------------------------------- /uCNC/src/cnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/cnc.h -------------------------------------------------------------------------------- /uCNC/src/cnc_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/cnc_build.h -------------------------------------------------------------------------------- /uCNC/src/cnc_hal_config_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/cnc_hal_config_helper.h -------------------------------------------------------------------------------- /uCNC/src/core/interpolator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/interpolator.c -------------------------------------------------------------------------------- /uCNC/src/core/interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/interpolator.h -------------------------------------------------------------------------------- /uCNC/src/core/io_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/io_control.c -------------------------------------------------------------------------------- /uCNC/src/core/io_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/io_control.h -------------------------------------------------------------------------------- /uCNC/src/core/motion_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/motion_control.c -------------------------------------------------------------------------------- /uCNC/src/core/motion_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/motion_control.h -------------------------------------------------------------------------------- /uCNC/src/core/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/parser.c -------------------------------------------------------------------------------- /uCNC/src/core/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/parser.h -------------------------------------------------------------------------------- /uCNC/src/core/parser_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/parser_expr.c -------------------------------------------------------------------------------- /uCNC/src/core/planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/planner.c -------------------------------------------------------------------------------- /uCNC/src/core/planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/core/planner.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/.gitignore: -------------------------------------------------------------------------------- 1 | # debug configs 2 | !*.cfg 3 | -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/avr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/avr.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_mega_shield_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_mega_shield_v3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_melzi_v114.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_melzi_v114.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_mks_dlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_mks_dlc.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_mks_gen_l_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_mks_gen_l_v1.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_rambo14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_rambo14.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_ramps14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_ramps14.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_ramps14_mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_ramps14_mirror.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_uno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_uno.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_uno_shield_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_uno_shield_v3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/avr/boardmap_x_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/avr/boardmap_x_controller.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/boarddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/boarddefs.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/boards_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/boards_helper.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_core_c3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_core_c3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_devkit_s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_devkit_s3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_esp32_shield_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_esp32_shield_v3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_mks_dlc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_mks_dlc32.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_mks_dlc32_s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_mks_dlc32_s3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_mks_tinybee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_mks_tinybee.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/boardmap_wemos_d1_r32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/boardmap_wemos_d1_r32.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp32/esp32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp32/esp32.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp8266/boardmap_wemos_d1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp8266/boardmap_wemos_d1.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/esp8266/esp8266.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/esp8266/esp8266.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/lpc176x/boardmap_mks_base13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/lpc176x/boardmap_mks_base13.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/lpc176x/boardmap_re_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/lpc176x/boardmap_re_arm.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/lpc176x/boardmap_skr_v14_turbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/lpc176x/boardmap_skr_v14_turbo.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/lpc176x/lpc176x.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/lpc176x/lpc176x.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/pin_mapping_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/pin_mapping_helper.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/rp2040/boardmap_rpi_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/rp2040/boardmap_rpi_pico.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/rp2040/boardmap_rpi_pico_w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/rp2040/boardmap_rpi_pico_w.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/rp2040/rp2040.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/rp2040/rp2040.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/rp2350/boardmap_rpi_pico2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/rp2350/boardmap_rpi_pico2.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/rp2350/rp2350.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/rp2350/rp2350.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/samd21/arduino_zero_debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/samd21/arduino_zero_debug.cfg -------------------------------------------------------------------------------- /uCNC/src/hal/boards/samd21/boardmap_mzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/samd21/boardmap_mzero.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/samd21/boardmap_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/samd21/boardmap_zero.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/samd21/samd21.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/samd21/samd21.ini -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/bluepill_debug_cmsis_dap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/bluepill_debug_cmsis_dap.cfg -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/bluepill_debug_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/bluepill_debug_stlink.cfg -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_blackpill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_blackpill.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_bluepill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_bluepill.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_bluepill_f0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_bluepill_f0.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_fysetc_cheetah_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_fysetc_cheetah_v2.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_generic_h750.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_generic_h750.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_mks_robin_nano_V3_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_mks_robin_nano_V3_1.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_mks_robin_nano_v1_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_mks_robin_nano_v1_2.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_mks_robin_nano_v3_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_mks_robin_nano_v3_1.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_nucleo_f411re_shield_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_nucleo_f411re_shield_v3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_skr3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_skr3.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/boardmap_srk_pro_v1_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/boardmap_srk_pro_v1_2.h -------------------------------------------------------------------------------- /uCNC/src/hal/boards/stm32/stm32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/boards/stm32/stm32.ini -------------------------------------------------------------------------------- /uCNC/src/hal/io_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/io_hal.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_cartesian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_cartesian.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_cartesian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_cartesian.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_corexy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_corexy.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_corexy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_corexy.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_delta.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_delta.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_dummy.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_dummy.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_linear_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_linear_delta.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_linear_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_linear_delta.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_rtheta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_rtheta.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_rtheta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_rtheta.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_scara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_scara.c -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematic_scara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematic_scara.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematicdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematicdefs.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/kinematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/kinematics.h -------------------------------------------------------------------------------- /uCNC/src/hal/kinematics/uCNC kinematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/kinematics/uCNC kinematics.pdf -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/avr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/avr/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/avr/mcu_avr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/avr/mcu_avr.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/avr/mcumap_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/avr/mcumap_avr.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/esp32_bt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/esp32_bt.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/esp32_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/esp32_eeprom.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/esp32_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/esp32_i2s.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/esp32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/esp32_spi.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/mcu_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/mcu_esp32.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32/mcumap_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32/mcumap_esp32.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32c3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32c3/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32c3/esp32c3_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32c3/esp32c3_i2s.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32c3/mcu_esp32c3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32c3/mcu_esp32c3.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32c3/mcumap_esp32c3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32c3/mcumap_esp32c3.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_common.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_eeprom.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_i2c.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_signal.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_spi.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_uart.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_usb.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32common/esp32_wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32common/esp32_wifi.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32s3/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32s3/esp32s3_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32s3/esp32s3_i2s.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32s3/mcu_esp32s3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32s3/mcu_esp32s3.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp32s3/mcumap_esp32s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp32s3/mcumap_esp32s3.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/esp8266_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/esp8266_eeprom.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/esp8266_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/esp8266_signal.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/esp8266_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/esp8266_spi.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/esp8266_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/esp8266_uart.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/esp8266_wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/esp8266_wifi.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/mcu_esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/mcu_esp8266.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/esp8266/mcumap_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/esp8266/mcumap_esp8266.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/lpc176x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/lpc176x/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/lpc176x/lpc176x_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/lpc176x/lpc176x_arduino.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/lpc176x/mcu_lpc176x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/lpc176x/mcu_lpc176x.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/lpc176x/mcumap_lpc176x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/lpc176x/mcumap_lpc176x.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/mcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/mcu.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/mcu.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/mcudefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/mcudefs.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/mcus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/mcus.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2040/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2040/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2040/ic74hc595.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2040/ic74hc595.pio -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2040/ic74hc595.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2040/ic74hc595.pio.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2040/mcu_rp2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2040/mcu_rp2040.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2040/mcumap_rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2040/mcumap_rp2040.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2040/rp2040_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2040/rp2040_arduino.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2350/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2350/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2350/ic74hc595.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2350/ic74hc595.pio -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2350/ic74hc595.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2350/ic74hc595.pio.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2350/mcu_rp2350.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2350/mcu_rp2350.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2350/mcumap_rp2350.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2350/mcumap_rp2350.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/rp2350/rp2350_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/rp2350/rp2350_arduino.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/samd21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/samd21/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/samd21/mcu_samd21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/samd21/mcu_samd21.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/samd21/mcumap_samd21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/samd21/mcumap_samd21.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f0x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f0x/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f0x/mcu_stm32f0x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f0x/mcu_stm32f0x.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f0x/mcumap_stm32f0x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f0x/mcumap_stm32f0x.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f1x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f1x/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f1x/mcu_stm32f1x.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f1x/mcumap_stm32f1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f1x/mcumap_stm32f1x.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f4x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f4x/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f4x/mcu_stm32f4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f4x/mcu_stm32f4x.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f4x/mcumap_stm32f4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f4x/mcumap_stm32f4x.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f4x/stm32f4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f4x/stm32f4x.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32f4x/stm32f4x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32f4x/stm32f4x.ld -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32h7x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32h7x/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32h7x/mcu_stm32h7x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32h7x/mcu_stm32h7x.c -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32h7x/mcumap_stm32h7x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32h7x/mcumap_stm32h7x.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32h7x/stm32h723zg.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32h7x/stm32h723zg.ld -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/stm32h7x/stm32h7x_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/stm32h7x/stm32h7x_arduino.cpp -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/virtual/mcumap_virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/virtual/mcumap_virtual.h -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/virtual/virtual.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/virtual/virtual.ini -------------------------------------------------------------------------------- /uCNC/src/hal/mcus/virtual/win_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/mcus/virtual/win_compiler.py -------------------------------------------------------------------------------- /uCNC/src/hal/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tool.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tool.h -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tool_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tool_helper.h -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/README.md -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/laser_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/laser_ppi.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/laser_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/laser_pwm.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/pen_servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/pen_servo.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/plasma_thc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/plasma_thc.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/spindle_besc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/spindle_besc.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/spindle_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/spindle_pwm.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/spindle_relay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/spindle_relay.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/vfd_modbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/vfd_modbus.c -------------------------------------------------------------------------------- /uCNC/src/hal/tools/tools/vfd_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/hal/tools/tools/vfd_pwm.c -------------------------------------------------------------------------------- /uCNC/src/interface/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/defaults.h -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_interface.h -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_print.c -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_print.h -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_protocol.c -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_protocol.h -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_settings.c -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_settings.h -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_stream.c -------------------------------------------------------------------------------- /uCNC/src/interface/grbl_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/grbl_stream.h -------------------------------------------------------------------------------- /uCNC/src/interface/serial_compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/interface/serial_compatibility.h -------------------------------------------------------------------------------- /uCNC/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/module.c -------------------------------------------------------------------------------- /uCNC/src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/module.h -------------------------------------------------------------------------------- /uCNC/src/modules/digimstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/digimstep.c -------------------------------------------------------------------------------- /uCNC/src/modules/digimstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/digimstep.h -------------------------------------------------------------------------------- /uCNC/src/modules/digipot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/digipot.c -------------------------------------------------------------------------------- /uCNC/src/modules/digipot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/digipot.h -------------------------------------------------------------------------------- /uCNC/src/modules/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/encoder.c -------------------------------------------------------------------------------- /uCNC/src/modules/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/encoder.h -------------------------------------------------------------------------------- /uCNC/src/modules/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/endpoint.h -------------------------------------------------------------------------------- /uCNC/src/modules/file_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/file_system.c -------------------------------------------------------------------------------- /uCNC/src/modules/file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/file_system.h -------------------------------------------------------------------------------- /uCNC/src/modules/ic74hc165.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/ic74hc165.h -------------------------------------------------------------------------------- /uCNC/src/modules/ic74hc595.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/ic74hc595.h -------------------------------------------------------------------------------- /uCNC/src/modules/language/language_en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/language/language_en.h -------------------------------------------------------------------------------- /uCNC/src/modules/modbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/modbus.c -------------------------------------------------------------------------------- /uCNC/src/modules/modbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/modbus.h -------------------------------------------------------------------------------- /uCNC/src/modules/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/pid.c -------------------------------------------------------------------------------- /uCNC/src/modules/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/pid.h -------------------------------------------------------------------------------- /uCNC/src/modules/shift_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/shift_register.c -------------------------------------------------------------------------------- /uCNC/src/modules/shift_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/shift_register.h -------------------------------------------------------------------------------- /uCNC/src/modules/softi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/softi2c.c -------------------------------------------------------------------------------- /uCNC/src/modules/softi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/softi2c.h -------------------------------------------------------------------------------- /uCNC/src/modules/softspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/softspi.c -------------------------------------------------------------------------------- /uCNC/src/modules/softspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/softspi.h -------------------------------------------------------------------------------- /uCNC/src/modules/softuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/softuart.c -------------------------------------------------------------------------------- /uCNC/src/modules/softuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/softuart.h -------------------------------------------------------------------------------- /uCNC/src/modules/system_languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/system_languages.h -------------------------------------------------------------------------------- /uCNC/src/modules/system_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/system_menu.c -------------------------------------------------------------------------------- /uCNC/src/modules/system_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/system_menu.h -------------------------------------------------------------------------------- /uCNC/src/modules/system_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/system_menu.md -------------------------------------------------------------------------------- /uCNC/src/modules/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/modules/websocket.h -------------------------------------------------------------------------------- /uCNC/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/utils.c -------------------------------------------------------------------------------- /uCNC/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/src/utils.h -------------------------------------------------------------------------------- /uCNC/uCNC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/uCNC/uCNC.ino -------------------------------------------------------------------------------- /ucnc_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paciente8159/uCNC/HEAD/ucnc_modules.py --------------------------------------------------------------------------------