2015-07-10 06:01:56 -07:00
|
|
|
@echo off
|
|
|
|
rm -rf .dep/
|
|
|
|
|
|
|
|
rm -rf build\rusefi.hex
|
|
|
|
rm -rf build\rusefi.bin
|
|
|
|
|
|
|
|
call update_version.bat
|
|
|
|
|
|
|
|
echo Starting compilation
|
|
|
|
rem the important piece
|
|
|
|
make
|
|
|
|
|
|
|
|
rem cd build
|
|
|
|
rem if not exist rusefi.hex echo "compilation failed"
|
|
|
|
rem if not exist rusefi.hex exit -1
|
|
|
|
rem cd ..
|
|
|
|
if errorlevel 1 goto error
|
|
|
|
|
|
|
|
echo Build complete success.
|
|
|
|
|
|
|
|
|
|
|
|
rem svn info > ../firmware_binary/version.txt
|
|
|
|
rem cp config/features.h ../firmware_binary
|
|
|
|
rem cp build/rusefi.hex ../firmware_binary
|
|
|
|
rem cp build/rusefi.elf ../firmware_binary
|
|
|
|
|
|
|
|
rem cp tunerstudio/rusefi.ini ../firmware_binary
|
|
|
|
|
|
|
|
rem cd ../firmware_binary
|
|
|
|
rem del firmaware_binary.zip
|
|
|
|
rem 7z a firmaware_binary.zip rusefi.hex rusefi.ini features.h flash.bat
|
|
|
|
rem cd ../firmware
|
|
|
|
|
|
|
|
|
|
|
|
cd build
|
|
|
|
rem Generate human-readable version of the .map memory usage report
|
|
|
|
java -jar ../../java_tools/gcc_map_reader.jar > ../rusefi_ram_report.txt
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
arm-none-eabi-size --format=berkeley "build\rusefi.elf"
|
|
|
|
arm-none-eabi-gcc -v
|
|
|
|
|
|
|
|
rem file, let's program the board right away
|
2017-02-16 20:08:04 -08:00
|
|
|
call flash_openocd
|
2015-07-10 06:01:56 -07:00
|
|
|
goto end_of_file
|
|
|
|
|
|
|
|
:error
|
|
|
|
echo Compilation failed
|
|
|
|
|
|
|
|
:end_of_file
|