12345678910111213141516171819202122232425262728293031323334353637383940 |
- @echo off
- if not "%~1" == "" goto debugFile
- @echo on
- "C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.2\common\bin\cspybat" -f "E:\My Document\Dropbox\Company\Project\MCU_ChargeStation\Source Code\CSU3\STM32F407ZG_EVB\EWARM\settings\STM32F407ZG_EVB.STM32F407ZG_EVB.general.xcl" --backend -f "E:\My Document\Dropbox\Company\Project\MCU_ChargeStation\Source Code\CSU3\STM32F407ZG_EVB\EWARM\settings\STM32F407ZG_EVB.STM32F407ZG_EVB.driver.xcl"
- @echo off
- goto end
- :debugFile
- @echo on
- "C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.2\common\bin\cspybat" -f "E:\My Document\Dropbox\Company\Project\MCU_ChargeStation\Source Code\CSU3\STM32F407ZG_EVB\EWARM\settings\STM32F407ZG_EVB.STM32F407ZG_EVB.general.xcl" "--debug_file=%~1" --backend -f "E:\My Document\Dropbox\Company\Project\MCU_ChargeStation\Source Code\CSU3\STM32F407ZG_EVB\EWARM\settings\STM32F407ZG_EVB.STM32F407ZG_EVB.driver.xcl"
- @echo off
- :end
|