Skip to content

Commit

Permalink
Updated core to 20240416
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmarles committed Apr 17, 2024
1 parent f281a5c commit f2e1788
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug",
"executable": "c:/Repo/GRBLHAL_Expatria/Etherhal_work/STM32F4xx/.pio/build/f446re_flexi_cnc_ygang_eth_sd_prb_4x/firmware.elf",
"projectEnvName": "f446re_flexi_cnc_ygang_eth_sd_prb_4x",
"executable": "c:/Repo/GRBLHAL_Expatria/Etherhal_work/STM32F4xx/.pio/build/f446re_flexi_cnc_xgang_eth_sd_prb/firmware.elf",
"projectEnvName": "f446re_flexi_cnc_xgang_eth_sd_prb",
"toolchainBinDir": "C:/Users/andrew/.platformio/packages/toolchain-gccarmnoneeabi@1.70201.0/bin",
"internalConsoleOptions": "openOnSessionStart",
"svdPath": "C:/Users/andrew/.platformio/platforms/ststm32/misc/svd/STM32F446x.svd",
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
"task": "Pre-Debug (f446re_flexi_cnc_xgang_eth_sd_prb)"
}
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (skip Pre-Debug)",
"executable": "c:/Repo/GRBLHAL_Expatria/Etherhal_work/STM32F4xx/.pio/build/f446re_flexi_cnc_ygang_eth_sd_prb_4x/firmware.elf",
"projectEnvName": "f446re_flexi_cnc_ygang_eth_sd_prb_4x",
"executable": "c:/Repo/GRBLHAL_Expatria/Etherhal_work/STM32F4xx/.pio/build/f446re_flexi_cnc_xgang_eth_sd_prb/firmware.elf",
"projectEnvName": "f446re_flexi_cnc_xgang_eth_sd_prb",
"toolchainBinDir": "C:/Users/andrew/.platformio/packages/toolchain-gccarmnoneeabi@1.70201.0/bin",
"internalConsoleOptions": "openOnSessionStart",
"svdPath": "C:/Users/andrew/.platformio/platforms/ststm32/misc/svd/STM32F446x.svd"
Expand All @@ -36,8 +36,8 @@
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (without uploading)",
"executable": "c:/Repo/GRBLHAL_Expatria/Etherhal_work/STM32F4xx/.pio/build/f446re_flexi_cnc_ygang_eth_sd_prb_4x/firmware.elf",
"projectEnvName": "f446re_flexi_cnc_ygang_eth_sd_prb_4x",
"executable": "c:/Repo/GRBLHAL_Expatria/Etherhal_work/STM32F4xx/.pio/build/f446re_flexi_cnc_xgang_eth_sd_prb/firmware.elf",
"projectEnvName": "f446re_flexi_cnc_xgang_eth_sd_prb",
"toolchainBinDir": "C:/Users/andrew/.platformio/packages/toolchain-gccarmnoneeabi@1.70201.0/bin",
"internalConsoleOptions": "openOnSessionStart",
"svdPath": "C:/Users/andrew/.platformio/platforms/ststm32/misc/svd/STM32F446x.svd",
Expand Down
2 changes: 1 addition & 1 deletion grbl
Submodule grbl updated 5 files
+1 −1 README.md
+17 −1 changelog.md
+1 −1 grbl.h
+2 −2 planner.c
+6 −6 stepper.c
22 changes: 22 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ build_flags =
-D DEFAULT_CONTROL_SIGNALS_INVERT_MASK=79
-D DEFAULT_DOOR_IGNORE_WHEN_IDLE=1
#-D DEFAULT_DOOR_KEEP_COOLANT_ON=1
-D DEFAULT_JOG_LIMIT_ENABLE=1

#Uncomment below if enabling http/webdav
#-D LWIP_HTTPD_SUPPORT_POST=1
Expand Down Expand Up @@ -393,6 +394,27 @@ lib_deps = ${common.lib_deps}
eeprom
lib_extra_dirs = ${common.lib_extra_dirs}

[env:f446re_flexi_cnc_xgang_eth_sd_prb]
board = genericSTM32F446RE
custom_prog_version = XGANG_ETH_SD_PRB
; change microcontroller
#board_build.mcu = stm32f446ret6
#board_build.ldscript = FLEXI_STM32F446RETX_BL_FLASH.ld
build_flags = ${common.build_flags}
# See Inc/my_machine.h for options
-D VFD_ENABLE=-1
-D MODBUS_ENABLE=1
-D N_SPINDLE=12
-D SDCARD_ENABLE=2
-D _WIZCHIP_=5500
-D KEYPAD_ENABLE=1
-D X_GANGED=1
-D X_AUTO_SQUARE=1
-D PROBE_PROTECT_ENABLE=1
lib_deps = ${common.lib_deps}
eeprom
lib_extra_dirs = ${common.lib_extra_dirs}

[env:f446re_flexi_cnc_eth_sd_emb]
board = genericSTM32F446RE
custom_prog_version = ETH_SD_EMB
Expand Down

0 comments on commit f2e1788

Please sign in to comment.