find_cygwin . -type f -print0 | xargs -0 dos2unix
This commit is contained in:
rusefi 2017-03-24 13:49:18 -04:00
parent 66ea0d5239
commit 075d71ee85
26 changed files with 21014 additions and 21014 deletions

View File

@ -1,142 +1,142 @@
rem
rem This script would compile firmware, dev console and win32 simulator into a single bundle file
rem This script depends on Cygwin tools: zip
rem
echo Hello rusEfi build full bundle
java -version
echo %date% %time%
echo Building win32 functional tests
cd win32_functional_tests
gcc -v
make -v
cd ..
cd firmware
echo %date% %time%
echo "CD to ${PWD}"
echo Building firmware
rm -fR .dep
rm -fR build
java -jar ../java_tools/version2header.jar
call clean_compile_two_versions.bat
if not exist deliver/rusefi_release.hex echo FAILED RELEASE
if not exist deliver/rusefi_release.hex exit -1
if not exist deliver/rusefi_debug.hex echo FAILED DEBUG
if not exist deliver/rusefi_debug.hex exit -1
cd ..
echo Building java console
cd java_console
call ant clean
call ant
cd ..
if not exist java_console_binary/rusefi_console.jar echo CONSOLE COMPILATION FAILED
if not exist java_console_binary/rusefi_console.jar exit -1
echo Building rusefi simulator
cd win32_functional_tests
mkdir out
rm -rf build
rm -rf .dep
call compile.bat
if not exist build/rusefi_simulator.exe echo SIMULATOR COMPILATION FAILED
if not exist build/rusefi_simulator.exe exit -1
cd ..
rm -rf temp
mkdir temp
set folder=snapshot_%date:~10%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%_rusefi
set folder=temp\%folder%
# this replaces spaces with 0s - that's needed before 10am
set folder=%folder: =0%
echo Working folder:
echo %folder%
mkdir %folder%
cp java_console_binary/rusefi_console.jar %folder%
cp win32_functional_tests/build/rusefi_simulator.exe %folder%
cp firmware/tunerstudio/rusefi.ini %folder%
cp firmware/svnversion.h %folder%
cp -r misc/install/openocd %folder%
cp java_console/rusefi.xml %folder%
cp firmware/deliver/rusefi_release.* %folder%
cp firmware/deliver/rusefi_debug.* %folder%
cp misc/console_launcher/rusefi_console.exe %folder%
cd temp
echo "Please copy find.exe to findcyg.exe in cygwin folder"
findcyg . -name '.svn' > folders_to_delete.txt
echo "Deleting .svn"
xargs rm -rf < folders_to_delete.txt
echo "Deleted .svn"
rm -rf folders_to_delete.txt
echo "Building bundle"
pwd
zip -r rusefi_bundle.zip *
echo "Bundle ready"
cd ..
echo "We are back in root directory"
pwd
echo "Building only console"
cd %folder%
pwd
dir
zip ../rusefi_console.zip rusefi_console.jar rusefi.xml
if not exist ../rusefi_console.zip echo CONSOLE ZIP FAILED
if not exist ../rusefi_console.zip exit -1
echo "only console ready"
echo "Going back to root folder"
cd ..
cd ..
pwd
echo "Making rusefi_simulator.zip"
pwd
zip -j temp/rusefi_simulator.zip win32_functional_tests/build/rusefi_simulator.exe firmware/tunerstudio/rusefi.ini java_console_binary/rusefi_console.jar
echo open ftp://u71977750-build:%RUSEFI_BUILD_FTP_PASS%@rusefi.com/ > ftp_commands.txt
echo binary >> ftp_commands.txt
echo put rusefi_bundle.zip >> ftp_commands.txt
echo cd separate_files >> ftp_commands.txt
echo put rusefi_simulator.zip >> ftp_commands.txt
echo put rusefi_console.zip >> ftp_commands.txt
echo exit >> ftp_commands.txt
cd temp
call winscp.com /script=../ftp_commands.txt
IF NOT ERRORLEVEL 0 echo winscp error DETECTED
IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
echo %date% %time%
echo "build_current_bundle: DONE here"
pwd
rem
rem This script would compile firmware, dev console and win32 simulator into a single bundle file
rem This script depends on Cygwin tools: zip
rem
echo Hello rusEfi build full bundle
java -version
echo %date% %time%
echo Building win32 functional tests
cd win32_functional_tests
gcc -v
make -v
cd ..
cd firmware
echo %date% %time%
echo "CD to ${PWD}"
echo Building firmware
rm -fR .dep
rm -fR build
java -jar ../java_tools/version2header.jar
call clean_compile_two_versions.bat
if not exist deliver/rusefi_release.hex echo FAILED RELEASE
if not exist deliver/rusefi_release.hex exit -1
if not exist deliver/rusefi_debug.hex echo FAILED DEBUG
if not exist deliver/rusefi_debug.hex exit -1
cd ..
echo Building java console
cd java_console
call ant clean
call ant
cd ..
if not exist java_console_binary/rusefi_console.jar echo CONSOLE COMPILATION FAILED
if not exist java_console_binary/rusefi_console.jar exit -1
echo Building rusefi simulator
cd win32_functional_tests
mkdir out
rm -rf build
rm -rf .dep
call compile.bat
if not exist build/rusefi_simulator.exe echo SIMULATOR COMPILATION FAILED
if not exist build/rusefi_simulator.exe exit -1
cd ..
rm -rf temp
mkdir temp
set folder=snapshot_%date:~10%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%_rusefi
set folder=temp\%folder%
# this replaces spaces with 0s - that's needed before 10am
set folder=%folder: =0%
echo Working folder:
echo %folder%
mkdir %folder%
cp java_console_binary/rusefi_console.jar %folder%
cp win32_functional_tests/build/rusefi_simulator.exe %folder%
cp firmware/tunerstudio/rusefi.ini %folder%
cp firmware/svnversion.h %folder%
cp -r misc/install/openocd %folder%
cp java_console/rusefi.xml %folder%
cp firmware/deliver/rusefi_release.* %folder%
cp firmware/deliver/rusefi_debug.* %folder%
cp misc/console_launcher/rusefi_console.exe %folder%
cd temp
echo "Please copy find.exe to findcyg.exe in cygwin folder"
findcyg . -name '.svn' > folders_to_delete.txt
echo "Deleting .svn"
xargs rm -rf < folders_to_delete.txt
echo "Deleted .svn"
rm -rf folders_to_delete.txt
echo "Building bundle"
pwd
zip -r rusefi_bundle.zip *
echo "Bundle ready"
cd ..
echo "We are back in root directory"
pwd
echo "Building only console"
cd %folder%
pwd
dir
zip ../rusefi_console.zip rusefi_console.jar rusefi.xml
if not exist ../rusefi_console.zip echo CONSOLE ZIP FAILED
if not exist ../rusefi_console.zip exit -1
echo "only console ready"
echo "Going back to root folder"
cd ..
cd ..
pwd
echo "Making rusefi_simulator.zip"
pwd
zip -j temp/rusefi_simulator.zip win32_functional_tests/build/rusefi_simulator.exe firmware/tunerstudio/rusefi.ini java_console_binary/rusefi_console.jar
echo open ftp://u71977750-build:%RUSEFI_BUILD_FTP_PASS%@rusefi.com/ > ftp_commands.txt
echo binary >> ftp_commands.txt
echo put rusefi_bundle.zip >> ftp_commands.txt
echo cd separate_files >> ftp_commands.txt
echo put rusefi_simulator.zip >> ftp_commands.txt
echo put rusefi_console.zip >> ftp_commands.txt
echo exit >> ftp_commands.txt
cd temp
call winscp.com /script=../ftp_commands.txt
IF NOT ERRORLEVEL 0 echo winscp error DETECTED
IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
echo %date% %time%
echo "build_current_bundle: DONE here"
pwd

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,51 +1,51 @@
echo This script should be executed from the root of rusEfi master GITHUB local copy
pwd
echo Updating from SVN
call git fetch --all
call git reset --hard origin/master
IF NOT ERRORLEVEL echo ERROR git pull-ing
IF NOT ERRORLEVEL 0 EXIT /B 1
set RUSEFI_SVN_PATH=../../svn/
set RUSEFI_SVN_W_PATH=..\..\svn
set RUSEFI_GIT_PATH=../git/rusefi
cd %RUSEFI_SVN_PATH%
svn up
cd %RUSEFI_GIT_PATH%
ls -l %RUSEFI_SVN_PATH%
rd /s /q %RUSEFI_SVN_W_PATH%\firmware
rd /s /q %RUSEFI_SVN_W_PATH%\hardware
rd /s /q %RUSEFI_SVN_W_PATH%\java_console
rd /s /q %RUSEFI_SVN_W_PATH%\unit_tests
rd /s /q %RUSEFI_SVN_W_PATH%\misc
rd /s /q %RUSEFI_SVN_W_PATH%\win32_functional_tests
cp -r firmware %RUSEFI_SVN_PATH%
cp -r hardware %RUSEFI_SVN_PATH%
cp -r java_console %RUSEFI_SVN_PATH%
cp -r unit_tests %RUSEFI_SVN_PATH%
cp -r misc %RUSEFI_SVN_PATH%
cp -r win32_functional_tests %RUSEFI_SVN_PATH%
rem rm -f %RUSEFI_GIT_PATH%/readme.*
rem rm -f %RUSEFI_GIT_PATH%/README.*
cp -r README.* %RUSEFI_SVN_PATH%
cp -r readme.* %RUSEFI_SVN_PATH%
cd %RUSEFI_SVN_PATH%
pwd
rem http://stackoverflow.com/questions/2120844/how-do-i-add-all-new-files-to-svn
svn add --force .
svn ci --no-auth-cache --non-interactive --username rusefi --password %RUSEFI_SVN_PASSWORD% -m "auto-merge from github"
echo This script should be executed from the root of rusEfi master GITHUB local copy
pwd
echo Updating from SVN
call git fetch --all
call git reset --hard origin/master
IF NOT ERRORLEVEL echo ERROR git pull-ing
IF NOT ERRORLEVEL 0 EXIT /B 1
set RUSEFI_SVN_PATH=../../svn/
set RUSEFI_SVN_W_PATH=..\..\svn
set RUSEFI_GIT_PATH=../git/rusefi
cd %RUSEFI_SVN_PATH%
svn up
cd %RUSEFI_GIT_PATH%
ls -l %RUSEFI_SVN_PATH%
rd /s /q %RUSEFI_SVN_W_PATH%\firmware
rd /s /q %RUSEFI_SVN_W_PATH%\hardware
rd /s /q %RUSEFI_SVN_W_PATH%\java_console
rd /s /q %RUSEFI_SVN_W_PATH%\unit_tests
rd /s /q %RUSEFI_SVN_W_PATH%\misc
rd /s /q %RUSEFI_SVN_W_PATH%\win32_functional_tests
cp -r firmware %RUSEFI_SVN_PATH%
cp -r hardware %RUSEFI_SVN_PATH%
cp -r java_console %RUSEFI_SVN_PATH%
cp -r unit_tests %RUSEFI_SVN_PATH%
cp -r misc %RUSEFI_SVN_PATH%
cp -r win32_functional_tests %RUSEFI_SVN_PATH%
rem rm -f %RUSEFI_GIT_PATH%/readme.*
rem rm -f %RUSEFI_GIT_PATH%/README.*
cp -r README.* %RUSEFI_SVN_PATH%
cp -r readme.* %RUSEFI_SVN_PATH%
cd %RUSEFI_SVN_PATH%
pwd
rem http://stackoverflow.com/questions/2120844/how-do-i-add-all-new-files-to-svn
svn add --force .
svn ci --no-auth-cache --non-interactive --username rusefi --password %RUSEFI_SVN_PASSWORD% -m "auto-merge from github"

View File

@ -1,16 +1,16 @@
set GIT2SVN_ROOT=c:\stuff\rusefi.git2svn
set RUSEFI_SVN_PATH=%GIT2SVN_ROOT%\svn
set RUSEFI_GIT_PATH=%GIT2SVN_ROOT%\git
rd /s /q %GIT2SVN_ROOT%
mkdir -p %RUSEFI_SVN_PATH%
cd %RUSEFI_SVN_PATH%
svn co https://svn.code.sf.net/p/rusefi/code/trunk/ .
mkdir -p %RUSEFI_GIT_PATH%
cd %RUSEFI_GIT_PATH%
git clone https://github.com/rusefi/rusefi.git
set GIT2SVN_ROOT=c:\stuff\rusefi.git2svn
set RUSEFI_SVN_PATH=%GIT2SVN_ROOT%\svn
set RUSEFI_GIT_PATH=%GIT2SVN_ROOT%\git
rd /s /q %GIT2SVN_ROOT%
mkdir -p %RUSEFI_SVN_PATH%
cd %RUSEFI_SVN_PATH%
svn co https://svn.code.sf.net/p/rusefi/code/trunk/ .
mkdir -p %RUSEFI_GIT_PATH%
cd %RUSEFI_GIT_PATH%
git clone https://github.com/rusefi/rusefi.git

View File

@ -1,10 +1,10 @@
echo going to Root of SVN project
cd ..
set RUSEFI_GIT_PATH=..\rusefi.git
cd %RUSEFI_GIT_PATH%
git fetch --all
echo going to Root of SVN project
cd ..
set RUSEFI_GIT_PATH=..\rusefi.git
cd %RUSEFI_GIT_PATH%
git fetch --all
git reset --hard origin/master

View File

@ -1,243 +1,243 @@
#include "stm32f4xx.h"
/**
* SPI 2
*
* Chip Select: PD11
*
*
* http://www.ti.com/lit/ds/symlink/tpic8101.pdf
* http://www.intersil.com/content/dam/Intersil/documents/an97/an9770.pdf
* http://e2e.ti.com/cfs-file/__key/telligent-evolution-components-attachments/00-26-01-00-00-42-36-40/TPIC8101-Training.pdf
*
*/
#define NO_DATA 0x0100
#define RX_BUF_SIZE 128
#define TX_BUF_SIZE 128
uint8_t rx_buf[RX_BUF_SIZE];
uint8_t tx_buf[TX_BUF_SIZE];
volatile uint16_t rx_head;
volatile uint16_t rx_tail;
volatile uint16_t tx_head;
volatile uint16_t tx_tail;
void uart_putc(uint8_t c);
uint16_t uart_getc(void);
uint16_t spi(uint16_t data);
int main(void)
{
RCC->AHB1ENR |= (RCC_AHB1ENR_GPIOBEN | RCC_AHB1ENR_GPIOCEN | RCC_AHB1ENR_GPIODEN);
RCC->APB1ENR |= (RCC_APB1ENR_SPI2EN | RCC_APB1ENR_USART3EN);
// PB11 / INT/HOLD
GPIOB->MODER |= GPIO_MODER_MODER11_0;
// open drain output
GPIOB->OTYPER |= GPIO_OTYPER_OT_11;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR11_1;
// PD11 / Chip Select
GPIOD->MODER |= GPIO_MODER_MODER11_0;
// open drain output
GPIOD->OTYPER |= GPIO_OTYPER_OT_11;
GPIOD->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR11_1;
// PB13 / SCK
GPIOB->MODER |= GPIO_MODER_MODER13_1;
// open drain output
GPIOB->OTYPER |= GPIO_OTYPER_OT_13;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR13_1;
GPIOB->AFR[1] |= (0x05 << 20);
// PB14 / MISO
GPIOB->MODER |= GPIO_MODER_MODER14_1;
GPIOB->PUPDR |= GPIO_PUPDR_PUPDR14_1;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR14_1;
GPIOB->AFR[1] |= (0x05 << 24);
// PB15 / MOSI
GPIOB->MODER |= GPIO_MODER_MODER15_1;
// open drain output
GPIOB->OTYPER |= GPIO_OTYPER_OT_15;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR15_1;
GPIOB->AFR[1] |= (0x05 << 28);
// PD12 / LED
GPIOD->MODER |= GPIO_MODER_MODER12_0;
GPIOD->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR12_1;
// SPI
SPI2->CR1 |= SPI_CR1_SSM | SPI_CR1_SSI | SPI_CR1_CPHA | SPI_CR1_MSTR | (SPI_CR1_BR_2 | SPI_CR1_BR_1 | SPI_CR1_BR_0);
SPI2->CR1 |= SPI_CR1_SPE;
// PC10 / TX
GPIOC->MODER |= GPIO_MODER_MODER10_1;
GPIOC->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR10_0;
GPIOC->AFR[1] |= (0x07 << 8);
// PC11 / RX
GPIOC->MODER |= GPIO_MODER_MODER11_1;
GPIOC->PUPDR &= ~GPIO_PUPDR_PUPDR11;
GPIOC->AFR[1] |= (0x07 << 12);
// USART
USART3->BRR = 0x00D9; // 50.0 MHz / 0x00D9 = 115200
USART3->CR3 |= USART_CR3_DMAT;
USART3->CR1 |= (USART_CR1_RXNEIE | USART_CR1_TE | USART_CR1_RE);
USART3->CR1 |= USART_CR1_UE;
NVIC_SetPriority(USART3_IRQn, 15);
NVIC_EnableIRQ(USART3_IRQn);
__enable_irq();
volatile uint32_t i;
uint16_t data;
uart_putc(spi(0b01001100));
uart_putc(spi(0b01001100));
uart_putc(spi(0b11100001));
// SET_ADVANCED_MODE
uart_putc(spi(0b01110001));
for (;;) {
/*data = uart_getc();
if ((data & 0xFF00) == 0) {
uart_putc(spi(data));
}*/
// LED on PD12 goes LOW
GPIOD->BSRRL = GPIO_ODR_ODR_12;
// delay
for (i = 0; i < 10000; i++);
// BAND_PASS_CMD
uart_putc(spi(0b00000000 | (40 & 0x3F)));
// Set the gain
uart_putc(spi(0b10000000 | (49 & 0x3F)));
// Set the integration time constant
uart_putc(spi(0b11000000 | (31 & 0x1F)));
// SET_ADVANCED_MODE
uart_putc(spi(0b01110001));
// int/hold LOW
GPIOB->BSRRL = GPIO_ODR_ODR_11;
// LED on PD12 goes HIGH
GPIOD->BSRRH = GPIO_ODR_ODR_12;
// delay
for (i = 0; i < 10000; i++);
// int/hold HIGH
GPIOB->BSRRH = GPIO_ODR_ODR_11;
}
return 0;
}
uint16_t spi(uint16_t data)
{
volatile uint16_t i;
// Chip Select PD11 goes HIGH
GPIOD->BSRRH = GPIO_ODR_ODR_11;
for (i = 0; i < 10; i++);
SPI2->DR = data;
while (!(SPI2->SR & SPI_SR_TXE));
while (!(SPI2->SR & SPI_SR_RXNE));
while ((SPI2->SR & SPI_SR_BSY));
for (i = 0; i < 10; i++);
// Chip Select PD11 goes LOW
GPIOD->BSRRL = GPIO_ODR_ODR_11;
for (i = 0; i < 100; i++);
return SPI2->DR;
}
void uart_putc(uint8_t c)
{
uint16_t tmphead;
tmphead = (tmphead < (TX_BUF_SIZE - 1)) ? (tx_head + 1) : 0;
tx_buf[tmphead] = c;
tx_head = tmphead;
USART3->CR1 |= USART_CR1_TXEIE;
}
uint16_t uart_getc(void)
{
uint16_t data, tmptail;
if (rx_tail == rx_head)
{
data = NO_DATA;
}
else
{
tmptail = (tmptail < (RX_BUF_SIZE - 1)) ? (rx_tail + 1) : 0;
rx_tail = tmptail;
data = rx_buf[tmptail];
}
return data;
}
void USART3_IRQHandler(void)
{
if ((USART3->SR & USART_SR_RXNE))
{
uint8_t data, tmphead;
USART3->SR = ~USART_SR_RXNE;
data = USART3->DR;
tmphead = (rx_head < (RX_BUF_SIZE - 1)) ? (rx_head + 1) : 0;
if (rx_tail == tmphead)
{
// Buffer overflow
}
else
{
rx_head = tmphead;
rx_buf[tmphead] = data;
}
}
if ((USART3->SR & USART_SR_TXE))
{
uint16_t tmptail;
USART3->SR = ~USART_SR_TXE;
if (tx_tail != tx_head)
{
tmptail = (tx_tail < (TX_BUF_SIZE - 1)) ? (tx_tail + 1) : 0;
tx_tail = tmptail;
USART3->DR = tx_buf[tmptail];
}
else
{
USART3->CR1 &= ~USART_CR1_TXEIE;
}
}
}
#include "stm32f4xx.h"
/**
* SPI 2
*
* Chip Select: PD11
*
*
* http://www.ti.com/lit/ds/symlink/tpic8101.pdf
* http://www.intersil.com/content/dam/Intersil/documents/an97/an9770.pdf
* http://e2e.ti.com/cfs-file/__key/telligent-evolution-components-attachments/00-26-01-00-00-42-36-40/TPIC8101-Training.pdf
*
*/
#define NO_DATA 0x0100
#define RX_BUF_SIZE 128
#define TX_BUF_SIZE 128
uint8_t rx_buf[RX_BUF_SIZE];
uint8_t tx_buf[TX_BUF_SIZE];
volatile uint16_t rx_head;
volatile uint16_t rx_tail;
volatile uint16_t tx_head;
volatile uint16_t tx_tail;
void uart_putc(uint8_t c);
uint16_t uart_getc(void);
uint16_t spi(uint16_t data);
int main(void)
{
RCC->AHB1ENR |= (RCC_AHB1ENR_GPIOBEN | RCC_AHB1ENR_GPIOCEN | RCC_AHB1ENR_GPIODEN);
RCC->APB1ENR |= (RCC_APB1ENR_SPI2EN | RCC_APB1ENR_USART3EN);
// PB11 / INT/HOLD
GPIOB->MODER |= GPIO_MODER_MODER11_0;
// open drain output
GPIOB->OTYPER |= GPIO_OTYPER_OT_11;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR11_1;
// PD11 / Chip Select
GPIOD->MODER |= GPIO_MODER_MODER11_0;
// open drain output
GPIOD->OTYPER |= GPIO_OTYPER_OT_11;
GPIOD->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR11_1;
// PB13 / SCK
GPIOB->MODER |= GPIO_MODER_MODER13_1;
// open drain output
GPIOB->OTYPER |= GPIO_OTYPER_OT_13;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR13_1;
GPIOB->AFR[1] |= (0x05 << 20);
// PB14 / MISO
GPIOB->MODER |= GPIO_MODER_MODER14_1;
GPIOB->PUPDR |= GPIO_PUPDR_PUPDR14_1;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR14_1;
GPIOB->AFR[1] |= (0x05 << 24);
// PB15 / MOSI
GPIOB->MODER |= GPIO_MODER_MODER15_1;
// open drain output
GPIOB->OTYPER |= GPIO_OTYPER_OT_15;
GPIOB->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR15_1;
GPIOB->AFR[1] |= (0x05 << 28);
// PD12 / LED
GPIOD->MODER |= GPIO_MODER_MODER12_0;
GPIOD->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR12_1;
// SPI
SPI2->CR1 |= SPI_CR1_SSM | SPI_CR1_SSI | SPI_CR1_CPHA | SPI_CR1_MSTR | (SPI_CR1_BR_2 | SPI_CR1_BR_1 | SPI_CR1_BR_0);
SPI2->CR1 |= SPI_CR1_SPE;
// PC10 / TX
GPIOC->MODER |= GPIO_MODER_MODER10_1;
GPIOC->OSPEEDR |= GPIO_OSPEEDER_OSPEEDR10_0;
GPIOC->AFR[1] |= (0x07 << 8);
// PC11 / RX
GPIOC->MODER |= GPIO_MODER_MODER11_1;
GPIOC->PUPDR &= ~GPIO_PUPDR_PUPDR11;
GPIOC->AFR[1] |= (0x07 << 12);
// USART
USART3->BRR = 0x00D9; // 50.0 MHz / 0x00D9 = 115200
USART3->CR3 |= USART_CR3_DMAT;
USART3->CR1 |= (USART_CR1_RXNEIE | USART_CR1_TE | USART_CR1_RE);
USART3->CR1 |= USART_CR1_UE;
NVIC_SetPriority(USART3_IRQn, 15);
NVIC_EnableIRQ(USART3_IRQn);
__enable_irq();
volatile uint32_t i;
uint16_t data;
uart_putc(spi(0b01001100));
uart_putc(spi(0b01001100));
uart_putc(spi(0b11100001));
// SET_ADVANCED_MODE
uart_putc(spi(0b01110001));
for (;;) {
/*data = uart_getc();
if ((data & 0xFF00) == 0) {
uart_putc(spi(data));
}*/
// LED on PD12 goes LOW
GPIOD->BSRRL = GPIO_ODR_ODR_12;
// delay
for (i = 0; i < 10000; i++);
// BAND_PASS_CMD
uart_putc(spi(0b00000000 | (40 & 0x3F)));
// Set the gain
uart_putc(spi(0b10000000 | (49 & 0x3F)));
// Set the integration time constant
uart_putc(spi(0b11000000 | (31 & 0x1F)));
// SET_ADVANCED_MODE
uart_putc(spi(0b01110001));
// int/hold LOW
GPIOB->BSRRL = GPIO_ODR_ODR_11;
// LED on PD12 goes HIGH
GPIOD->BSRRH = GPIO_ODR_ODR_12;
// delay
for (i = 0; i < 10000; i++);
// int/hold HIGH
GPIOB->BSRRH = GPIO_ODR_ODR_11;
}
return 0;
}
uint16_t spi(uint16_t data)
{
volatile uint16_t i;
// Chip Select PD11 goes HIGH
GPIOD->BSRRH = GPIO_ODR_ODR_11;
for (i = 0; i < 10; i++);
SPI2->DR = data;
while (!(SPI2->SR & SPI_SR_TXE));
while (!(SPI2->SR & SPI_SR_RXNE));
while ((SPI2->SR & SPI_SR_BSY));
for (i = 0; i < 10; i++);
// Chip Select PD11 goes LOW
GPIOD->BSRRL = GPIO_ODR_ODR_11;
for (i = 0; i < 100; i++);
return SPI2->DR;
}
void uart_putc(uint8_t c)
{
uint16_t tmphead;
tmphead = (tmphead < (TX_BUF_SIZE - 1)) ? (tx_head + 1) : 0;
tx_buf[tmphead] = c;
tx_head = tmphead;
USART3->CR1 |= USART_CR1_TXEIE;
}
uint16_t uart_getc(void)
{
uint16_t data, tmptail;
if (rx_tail == rx_head)
{
data = NO_DATA;
}
else
{
tmptail = (tmptail < (RX_BUF_SIZE - 1)) ? (rx_tail + 1) : 0;
rx_tail = tmptail;
data = rx_buf[tmptail];
}
return data;
}
void USART3_IRQHandler(void)
{
if ((USART3->SR & USART_SR_RXNE))
{
uint8_t data, tmphead;
USART3->SR = ~USART_SR_RXNE;
data = USART3->DR;
tmphead = (rx_head < (RX_BUF_SIZE - 1)) ? (rx_head + 1) : 0;
if (rx_tail == tmphead)
{
// Buffer overflow
}
else
{
rx_head = tmphead;
rx_buf[tmphead] = data;
}
}
if ((USART3->SR & USART_SR_TXE))
{
uint16_t tmptail;
USART3->SR = ~USART_SR_TXE;
if (tx_tail != tx_head)
{
tmptail = (tx_tail < (TX_BUF_SIZE - 1)) ? (tx_tail + 1) : 0;
tx_tail = tmptail;
USART3->DR = tx_buf[tmptail];
}
else
{
USART3->CR1 &= ~USART_CR1_TXEIE;
}
}
}

View File

@ -1,31 +1,31 @@
echo I am hw_test.bat
cd ../firmware
call flash_erase
echo Compiling firmware
pwd
call compile_and_program.bat
if not exist build/rusefi.bin echo FAILED TO COMPILE
if not exist build/rusefi.bin exit -1
pwd
cd ..
echo Running some commands
pwd
rem java -cp java_console_binary\rusefi_console.jar com.rusefi.CmdLine "set_led_blinking_period 10"
cd java_console
echo Running tests
which java
which javac
ant realtest
IF NOT ERRORLEVEL echo ERROR DETECTED
IF NOT ERRORLEVEL 0 EXIT /B 1
echo I am hw_test.bat
cd ../firmware
call flash_erase
echo Compiling firmware
pwd
call compile_and_program.bat
if not exist build/rusefi.bin echo FAILED TO COMPILE
if not exist build/rusefi.bin exit -1
pwd
cd ..
echo Running some commands
pwd
rem java -cp java_console_binary\rusefi_console.jar com.rusefi.CmdLine "set_led_blinking_period 10"
cd java_console
echo Running tests
which java
which javac
ant realtest
IF NOT ERRORLEVEL echo ERROR DETECTED
IF NOT ERRORLEVEL 0 EXIT /B 1

View File

@ -1,31 +1,31 @@
# Helper for common memory read/modify/write procedures
# mrw: "memory read word", returns value of $reg
proc mrw {reg} {
set value ""
mem2array value 32 $reg 1
return $value(0)
}
add_usage_text mrw "address"
add_help_text mrw "Returns value of word in memory."
proc mrb {reg} {
set value ""
mem2array value 8 $reg 1
return $value(0)
}
add_usage_text mrb "address"
add_help_text mrb "Returns value of byte in memory."
# mmw: "memory modify word", updates value of $reg
# $reg <== ((value & ~$clearbits) | $setbits)
proc mmw {reg setbits clearbits} {
set old [mrw $reg]
set new [expr ($old & ~$clearbits) | $setbits]
mww $reg $new
}
add_usage_text mmw "address setbits clearbits"
add_help_text mmw "Modify word in memory. new_val = (old_val & ~clearbits) | setbits;"
# Helper for common memory read/modify/write procedures
# mrw: "memory read word", returns value of $reg
proc mrw {reg} {
set value ""
mem2array value 32 $reg 1
return $value(0)
}
add_usage_text mrw "address"
add_help_text mrw "Returns value of word in memory."
proc mrb {reg} {
set value ""
mem2array value 8 $reg 1
return $value(0)
}
add_usage_text mrb "address"
add_help_text mrb "Returns value of byte in memory."
# mmw: "memory modify word", updates value of $reg
# $reg <== ((value & ~$clearbits) | $setbits)
proc mmw {reg setbits clearbits} {
set old [mrw $reg]
set new [expr ($old & ~$clearbits) | $setbits]
mww $reg $new
}
add_usage_text mmw "address setbits clearbits"
add_help_text mmw "Modify word in memory. new_val = (old_val & ~clearbits) | setbits;"

View File

@ -1,16 +1,16 @@
#
# STMicroelectronics ST-LINK/V2-1 in-circuit debugger/programmer
#
interface hla
hla_layout stlink
hla_device_desc "ST-LINK/V2-1"
hla_vid_pid 0x0483 0x374b
# Optionally specify the serial number of ST-LINK/V2 usb device. ST-LINK/V2
# devices seem to have serial numbers with unreadable characters. ST-LINK/V2
# firmware version >= V2.J21.S4 recommended to avoid issues with adapter serial
# number reset issues.
# eg.
#hla_serial "\xaa\xbc\x6e\x06\x50\x75\xff\x55\x17\x42\x19\x3f"
#
# STMicroelectronics ST-LINK/V2-1 in-circuit debugger/programmer
#
interface hla
hla_layout stlink
hla_device_desc "ST-LINK/V2-1"
hla_vid_pid 0x0483 0x374b
# Optionally specify the serial number of ST-LINK/V2 usb device. ST-LINK/V2
# devices seem to have serial numbers with unreadable characters. ST-LINK/V2
# firmware version >= V2.J21.S4 recommended to avoid issues with adapter serial
# number reset issues.
# eg.
#hla_serial "\xaa\xbc\x6e\x06\x50\x75\xff\x55\x17\x42\x19\x3f"

View File

@ -1,12 +1,12 @@
#
# This is an STM32F429 discovery board with a single STM32F429ZI chip.
# http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/PF259090
#
source [find openocd/stlink-v2-1.cfg]
transport select hla_swd
source [find openocd/stm32f4x.cfg]
reset_config srst_only
#
# This is an STM32F429 discovery board with a single STM32F429ZI chip.
# http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/PF259090
#
source [find openocd/stlink-v2-1.cfg]
transport select hla_swd
source [find openocd/stm32f4x.cfg]
reset_config srst_only

View File

@ -1,137 +1,137 @@
# script for stm32f4x family
#
# stm32 devices support both JTAG and SWD transports.
#
source [find openocd/swj-dp.tcl]
source [find openocd/mem_helper.tcl]
if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME
} else {
set _CHIPNAME stm32f4x
}
set _ENDIAN little
# Work-area is a space in RAM used for flash programming
# By default use 32kB (Available RAM in smallest device STM32F410)
if { [info exists WORKAREASIZE] } {
set _WORKAREASIZE $WORKAREASIZE
} else {
set _WORKAREASIZE 0x8000
}
#jtag scan chain
if { [info exists CPUTAPID] } {
set _CPUTAPID $CPUTAPID
} else {
if { [using_jtag] } {
# See STM Document RM0090
# Section 38.6.3 - corresponds to Cortex-M4 r0p1
set _CPUTAPID 0x4ba00477
} {
set _CPUTAPID 0x2ba01477
}
}
swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
if { [info exists BSTAPID] } {
set _BSTAPID $BSTAPID
} else {
# See STM Document RM0090
# Section 38.6.2
# STM32F405xx/07xx and STM32F415xx/17xx
set _BSTAPID1 0x06413041
# STM32F42xxx and STM32F43xxx
set _BSTAPID2 0x06419041
# See STM Document RM0368 (Rev. 3)
# STM32F401B/C
set _BSTAPID3 0x06423041
# STM32F401D/E
set _BSTAPID4 0x06433041
# See STM Document RM0383 (Rev 2)
# STM32F411
set _BSTAPID5 0x06431041
# See STM Document RM0386
# STM32F469
set _BSTAPID6 0x06434041
# See STM Document RM0401
# STM32F410
set _BSTAPID7 0x06458041
# STM32F412
set _BSTAPID8 0x06441041
}
if {[using_jtag]} {
swj_newdap $_CHIPNAME bs -irlen 5 -expected-id $_BSTAPID1 \
-expected-id $_BSTAPID2 -expected-id $_BSTAPID3 \
-expected-id $_BSTAPID4 -expected-id $_BSTAPID5 \
-expected-id $_BSTAPID6 -expected-id $_BSTAPID7 \
-expected-id $_BSTAPID8
}
set _TARGETNAME $_CHIPNAME.cpu
target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
set _FLASHNAME $_CHIPNAME.flash
flash bank $_FLASHNAME stm32f2x 0 0 0 0 $_TARGETNAME
# JTAG speed should be <= F_CPU/6. F_CPU after reset is 16MHz, so use F_JTAG = 2MHz
#
# Since we may be running of an RC oscilator, we crank down the speed a
# bit more to be on the safe side. Perhaps superstition, but if are
# running off a crystal, we can run closer to the limit. Note
# that there can be a pretty wide band where things are more or less stable.
adapter_khz 2000
adapter_nsrst_delay 100
if {[using_jtag]} {
jtag_ntrst_delay 100
}
reset_config srst_nogate
if {![using_hla]} {
# if srst is not fitted use SYSRESETREQ to
# perform a soft reset
cortex_m reset_config sysresetreq
}
$_TARGETNAME configure -event examine-end {
# Enable debug during low power modes (uses more power)
# DBGMCU_CR |= DBG_STANDBY | DBG_STOP | DBG_SLEEP
mmw 0xE0042004 0x00000007 0
# Stop watchdog counters during halt
# DBGMCU_APB1_FZ |= DBG_IWDG_STOP | DBG_WWDG_STOP
mmw 0xE0042008 0x00001800 0
}
$_TARGETNAME configure -event trace-config {
# Set TRACE_IOEN; TRACE_MODE is set to async; when using sync
# change this value accordingly to configure trace pins
# assignment
mmw 0xE0042004 0x00000020 0
}
$_TARGETNAME configure -event reset-init {
# Configure PLL to boost clock to HSI x 4 (64 MHz)
mww 0x40023804 0x08012008 ;# RCC_PLLCFGR 16 Mhz /8 (M) * 128 (N) /4(P)
mww 0x40023C00 0x00000102 ;# FLASH_ACR = PRFTBE | 2(Latency)
mmw 0x40023800 0x01000000 0 ;# RCC_CR |= PLLON
sleep 10 ;# Wait for PLL to lock
mmw 0x40023808 0x00001000 0 ;# RCC_CFGR |= RCC_CFGR_PPRE1_DIV2
mmw 0x40023808 0x00000002 0 ;# RCC_CFGR |= RCC_CFGR_SW_PLL
# Boost JTAG frequency
adapter_khz 8000
}
$_TARGETNAME configure -event reset-start {
# Reduce speed since CPU speed will slow down to 16MHz with the reset
adapter_khz 2000
}
# script for stm32f4x family
#
# stm32 devices support both JTAG and SWD transports.
#
source [find openocd/swj-dp.tcl]
source [find openocd/mem_helper.tcl]
if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME
} else {
set _CHIPNAME stm32f4x
}
set _ENDIAN little
# Work-area is a space in RAM used for flash programming
# By default use 32kB (Available RAM in smallest device STM32F410)
if { [info exists WORKAREASIZE] } {
set _WORKAREASIZE $WORKAREASIZE
} else {
set _WORKAREASIZE 0x8000
}
#jtag scan chain
if { [info exists CPUTAPID] } {
set _CPUTAPID $CPUTAPID
} else {
if { [using_jtag] } {
# See STM Document RM0090
# Section 38.6.3 - corresponds to Cortex-M4 r0p1
set _CPUTAPID 0x4ba00477
} {
set _CPUTAPID 0x2ba01477
}
}
swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
if { [info exists BSTAPID] } {
set _BSTAPID $BSTAPID
} else {
# See STM Document RM0090
# Section 38.6.2
# STM32F405xx/07xx and STM32F415xx/17xx
set _BSTAPID1 0x06413041
# STM32F42xxx and STM32F43xxx
set _BSTAPID2 0x06419041
# See STM Document RM0368 (Rev. 3)
# STM32F401B/C
set _BSTAPID3 0x06423041
# STM32F401D/E
set _BSTAPID4 0x06433041
# See STM Document RM0383 (Rev 2)
# STM32F411
set _BSTAPID5 0x06431041
# See STM Document RM0386
# STM32F469
set _BSTAPID6 0x06434041
# See STM Document RM0401
# STM32F410
set _BSTAPID7 0x06458041
# STM32F412
set _BSTAPID8 0x06441041
}
if {[using_jtag]} {
swj_newdap $_CHIPNAME bs -irlen 5 -expected-id $_BSTAPID1 \
-expected-id $_BSTAPID2 -expected-id $_BSTAPID3 \
-expected-id $_BSTAPID4 -expected-id $_BSTAPID5 \
-expected-id $_BSTAPID6 -expected-id $_BSTAPID7 \
-expected-id $_BSTAPID8
}
set _TARGETNAME $_CHIPNAME.cpu
target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
set _FLASHNAME $_CHIPNAME.flash
flash bank $_FLASHNAME stm32f2x 0 0 0 0 $_TARGETNAME
# JTAG speed should be <= F_CPU/6. F_CPU after reset is 16MHz, so use F_JTAG = 2MHz
#
# Since we may be running of an RC oscilator, we crank down the speed a
# bit more to be on the safe side. Perhaps superstition, but if are
# running off a crystal, we can run closer to the limit. Note
# that there can be a pretty wide band where things are more or less stable.
adapter_khz 2000
adapter_nsrst_delay 100
if {[using_jtag]} {
jtag_ntrst_delay 100
}
reset_config srst_nogate
if {![using_hla]} {
# if srst is not fitted use SYSRESETREQ to
# perform a soft reset
cortex_m reset_config sysresetreq
}
$_TARGETNAME configure -event examine-end {
# Enable debug during low power modes (uses more power)
# DBGMCU_CR |= DBG_STANDBY | DBG_STOP | DBG_SLEEP
mmw 0xE0042004 0x00000007 0
# Stop watchdog counters during halt
# DBGMCU_APB1_FZ |= DBG_IWDG_STOP | DBG_WWDG_STOP
mmw 0xE0042008 0x00001800 0
}
$_TARGETNAME configure -event trace-config {
# Set TRACE_IOEN; TRACE_MODE is set to async; when using sync
# change this value accordingly to configure trace pins
# assignment
mmw 0xE0042004 0x00000020 0
}
$_TARGETNAME configure -event reset-init {
# Configure PLL to boost clock to HSI x 4 (64 MHz)
mww 0x40023804 0x08012008 ;# RCC_PLLCFGR 16 Mhz /8 (M) * 128 (N) /4(P)
mww 0x40023C00 0x00000102 ;# FLASH_ACR = PRFTBE | 2(Latency)
mmw 0x40023800 0x01000000 0 ;# RCC_CR |= PLLON
sleep 10 ;# Wait for PLL to lock
mmw 0x40023808 0x00001000 0 ;# RCC_CFGR |= RCC_CFGR_PPRE1_DIV2
mmw 0x40023808 0x00000002 0 ;# RCC_CFGR |= RCC_CFGR_SW_PLL
# Boost JTAG frequency
adapter_khz 8000
}
$_TARGETNAME configure -event reset-start {
# Reduce speed since CPU speed will slow down to 16MHz with the reset
adapter_khz 2000
}

View File

@ -1,34 +1,34 @@
# ARM Debug Interface V5 (ADI_V5) utility
# ... Mostly for SWJ-DP (not SW-DP or JTAG-DP, since
# SW-DP and JTAG-DP targets don't need to switch based
# on which transport is active.
#
# declare a JTAG or SWD Debug Access Point (DAP)
# based on the transport in use with this session.
# You can't access JTAG ops when SWD is active, etc.
# params are currently what "jtag newtap" uses
# because OpenOCD internals are still strongly biased
# to JTAG .... but for SWD, "irlen" etc are ignored,
# and the internals work differently
# for now, ignore non-JTAG and non-SWD transports
# (e.g. initial flash programming via SPI or UART)
# split out "chip" and "tag" so we can someday handle
# them more uniformly irlen too...)
if [catch {transport select}] {
echo "Error: unable to select a session transport. Can't continue."
shutdown
}
proc swj_newdap {chip tag args} {
if [using_hla] {
eval hla newtap $chip $tag $args
} elseif [using_jtag] {
eval jtag newtap $chip $tag $args
} elseif [using_swd] {
eval swd newdap $chip $tag $args
}
}
# ARM Debug Interface V5 (ADI_V5) utility
# ... Mostly for SWJ-DP (not SW-DP or JTAG-DP, since
# SW-DP and JTAG-DP targets don't need to switch based
# on which transport is active.
#
# declare a JTAG or SWD Debug Access Point (DAP)
# based on the transport in use with this session.
# You can't access JTAG ops when SWD is active, etc.
# params are currently what "jtag newtap" uses
# because OpenOCD internals are still strongly biased
# to JTAG .... but for SWD, "irlen" etc are ignored,
# and the internals work differently
# for now, ignore non-JTAG and non-SWD transports
# (e.g. initial flash programming via SPI or UART)
# split out "chip" and "tag" so we can someday handle
# them more uniformly irlen too...)
if [catch {transport select}] {
echo "Error: unable to select a session transport. Can't continue."
shutdown
}
proc swj_newdap {chip tag args} {
if [using_hla] {
eval hla newtap $chip $tag $args
} elseif [using_jtag] {
eval jtag newtap $chip $tag $args
} elseif [using_swd] {
eval swd newdap $chip $tag $args
}
}

View File

@ -1,5 +1,5 @@
rem if you have an older Rev C discovery please update to latest Rev D firmware
rem As of March 2017 this enabled GDB debugging using ARM Eclipse plug-in
openocd\openocd.exe -f openocd/stm32f429disc1.cfg -c init -c reset
rem if you have an older Rev C discovery please update to latest Rev D firmware
rem As of March 2017 this enabled GDB debugging using ARM Eclipse plug-in
openocd\openocd.exe -f openocd/stm32f429disc1.cfg -c init -c reset

View File

@ -1,11 +1,11 @@
zip -j rusefi_simulator.zip win32_functional_tests/build/rusefi_simulator.exe firmware/tunerstudio/rusefi.ini java_console_binary/rusefi_console.jar
echo user u71977750-build> ftpcmd.dat
echo XXX >> ftpcmd.dat
echo bin>> ftpcmd.dat
echo put rusefi_simulator.zip separate_files/rusefi_simulator.zip >> ftpcmd.dat
echo put temp/rusefi_bundle.zip rusefi_bundle.zip >> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat rusefi.com
zip -j rusefi_simulator.zip win32_functional_tests/build/rusefi_simulator.exe firmware/tunerstudio/rusefi.ini java_console_binary/rusefi_console.jar
echo user u71977750-build> ftpcmd.dat
echo XXX >> ftpcmd.dat
echo bin>> ftpcmd.dat
echo put rusefi_simulator.zip separate_files/rusefi_simulator.zip >> ftpcmd.dat
echo put temp/rusefi_bundle.zip rusefi_bundle.zip >> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat rusefi.com

View File

@ -1,50 +1,50 @@
#!/bin/bash
echo "The PATH is ${PATH}"
cd "${WORKSPACE}"
echo "start in workspace ${PWD}"
cd firmware
echo "CD to ${PWD}"
rm -fR .dep
rm -fR build
make
if [ ! -f build/rusefi.hex ]; then
echo "Firmware compilation failed"
exit -1
fi
cd "${WORKSPACE}/win32_algo_tests"
echo "CD to ${PWD}"
rm -fR .dep
rm -fR build
make
if [ ! -f build/rusefi_test ]; then
echo "test compilation failed"
exit -1
fi
# we want to terminate if test fails
set -e
# invoke the tests - hopefully error code would be propagated?
build/rusefi_test
cd "${WORKSPACE}/java_console"
echo "CD to ${PWD}"
ant
cd "${WORKSPACE}"
echo "CD to ${PWD}"
zip -j firmware/build/rusefi_firmware.zip firmware/build/rusefi.hex firmware/tunerstudio/rusefi.ini
echo user u71977750-build pass > ftp.cmd
echo put firmware/build/rusefi_firmware.zip rusefi_firmware.zip >> ftp.cmd
echo put java_console_binary/rusefi_console.jar rusefi_console.jar >> ftp.cmd
ftp -npiv rusefi.com < ftp.cmd
cat ftp.cmd
#!/bin/bash
echo "The PATH is ${PATH}"
cd "${WORKSPACE}"
echo "start in workspace ${PWD}"
cd firmware
echo "CD to ${PWD}"
rm -fR .dep
rm -fR build
make
if [ ! -f build/rusefi.hex ]; then
echo "Firmware compilation failed"
exit -1
fi
cd "${WORKSPACE}/win32_algo_tests"
echo "CD to ${PWD}"
rm -fR .dep
rm -fR build
make
if [ ! -f build/rusefi_test ]; then
echo "test compilation failed"
exit -1
fi
# we want to terminate if test fails
set -e
# invoke the tests - hopefully error code would be propagated?
build/rusefi_test
cd "${WORKSPACE}/java_console"
echo "CD to ${PWD}"
ant
cd "${WORKSPACE}"
echo "CD to ${PWD}"
zip -j firmware/build/rusefi_firmware.zip firmware/build/rusefi.hex firmware/tunerstudio/rusefi.ini
echo user u71977750-build pass > ftp.cmd
echo put firmware/build/rusefi_firmware.zip rusefi_firmware.zip >> ftp.cmd
echo put java_console_binary/rusefi_console.jar rusefi_console.jar >> ftp.cmd
ftp -npiv rusefi.com < ftp.cmd
cat ftp.cmd
rm ftp.cmd

View File

@ -1,77 +1,77 @@
EFI_ANALOG_INPUTS=1
EFI_INTERNAL_ADC=1
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 19:21:43
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 106846 msgs/S, 213692 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 91032 msgs/S, 182064 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 91062 msgs/S, 182124 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 380152 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 65031 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 105088 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 30909 reschedules/S, 185454 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 250940 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 388708 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 343632 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 307664 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 299168 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3180 bytes
--- Thread: 84 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------
EFI_ANALOG_INPUTS=1
EFI_INTERNAL_ADC=1
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 19:21:43
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 106846 msgs/S, 213692 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 91032 msgs/S, 182064 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 91062 msgs/S, 182124 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 380152 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 65031 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 105088 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 30909 reschedules/S, 185454 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 250940 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 388708 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 343632 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 307664 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 299168 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3180 bytes
--- Thread: 84 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------

View File

@ -1,79 +1,79 @@
EFI_SHAFT_POSITION_INPUT=1
EFI_EMULATE_POSITION_SENSORS=0
EFI_ANALOG_INPUTS=1
EFI_INTERNAL_ADC=1
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 19:29:31
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 107257 msgs/S, 214514 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 91390 msgs/S, 182780 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 91494 msgs/S, 182988 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 381256 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 65280 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 105550 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 31046 reschedules/S, 186276 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 251860 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 390116 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 350956 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 308780 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 300260 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3180 bytes
--- Thread: 84 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------
EFI_SHAFT_POSITION_INPUT=1
EFI_EMULATE_POSITION_SENSORS=0
EFI_ANALOG_INPUTS=1
EFI_INTERNAL_ADC=1
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 19:29:31
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 107257 msgs/S, 214514 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 91390 msgs/S, 182780 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 91494 msgs/S, 182988 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 381256 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 65280 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 105550 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 31046 reschedules/S, 186276 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 251860 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 390116 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 350956 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 308780 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 300260 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3180 bytes
--- Thread: 84 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------

View File

@ -1,84 +1,84 @@
EFI_SHAFT_POSITION_INPUT=1
EFI_EMULATE_POSITION_SENSORS=0
EFI_ANALOG_INPUTS=1
EFI_INTERNAL_ADC=0
CH_DBG_SYSTEM_STATE_CHECK=1
CH_DBG_ENABLE_CHECKS=0
CH_DBG_ENABLE_ASSERTS=0
CH_DBG_ENABLE_STACK_CHECK=0
CH_DBG_THREADS_PROFILING=0
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 20:21:09
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 123421 msgs/S, 246842 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 105558 msgs/S, 211116 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 105671 msgs/S, 211342 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 471536 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 79851 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 121381 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 36893 reschedules/S, 221358 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 297948 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 392824 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 379438 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 358984 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 326936 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3164 bytes
--- Thread: 76 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------
EFI_SHAFT_POSITION_INPUT=1
EFI_EMULATE_POSITION_SENSORS=0
EFI_ANALOG_INPUTS=1
EFI_INTERNAL_ADC=0
CH_DBG_SYSTEM_STATE_CHECK=1
CH_DBG_ENABLE_CHECKS=0
CH_DBG_ENABLE_ASSERTS=0
CH_DBG_ENABLE_STACK_CHECK=0
CH_DBG_THREADS_PROFILING=0
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 20:21:09
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 123421 msgs/S, 246842 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 105558 msgs/S, 211116 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 105671 msgs/S, 211342 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 471536 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 79851 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 121381 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 36893 reschedules/S, 221358 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 297948 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 392824 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 379438 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 358984 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 326936 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3164 bytes
--- Thread: 76 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------

View File

@ -1,91 +1,91 @@
EFI_SHAFT_POSITION_INPUT=0
EFI_EMULATE_POSITION_SENSORS=0
EFI_ANALOG_INPUTS=0
EFI_HD44780_LCD=0
EFI_MAP_AVERAGING=0
EFI_WAVE_ANALYZER=0
EFI_WAVE_CHART=0
EFI_ANALOG_CHART=0
EFI_SHAFT_POSITION_INPUT=0
EFI_ENGINE_CONTROL=0
CH_DBG_SYSTEM_STATE_CHECK=1
CH_DBG_ENABLE_CHECKS=0
CH_DBG_ENABLE_ASSERTS=0
CH_DBG_ENABLE_STACK_CHECK=0
CH_DBG_THREADS_PROFILING=0
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 23:37:48
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 199330 msgs/S, 398660 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 170472 msgs/S, 340944 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 170471 msgs/S, 340942 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 756752 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 130042 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 196372 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 59609 reschedules/S, 357654 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 479164 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 630204 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 611438 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 574200 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 523264 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3164 bytes
--- Thread: 76 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------
Final result: SUCCESS
EFI_SHAFT_POSITION_INPUT=0
EFI_EMULATE_POSITION_SENSORS=0
EFI_ANALOG_INPUTS=0
EFI_HD44780_LCD=0
EFI_MAP_AVERAGING=0
EFI_WAVE_ANALYZER=0
EFI_WAVE_CHART=0
EFI_ANALOG_CHART=0
EFI_SHAFT_POSITION_INPUT=0
EFI_ENGINE_CONTROL=0
CH_DBG_SYSTEM_STATE_CHECK=1
CH_DBG_ENABLE_CHECKS=0
CH_DBG_ENABLE_ASSERTS=0
CH_DBG_ENABLE_STACK_CHECK=0
CH_DBG_THREADS_PROFILING=0
*** ChibiOS/RT test suite
***
*** Kernel: 2.6.3
*** Compiled: Jun 21 2014 - 23:37:48
*** Compiler: GCC 4.7.4 20130613 (release) [ARM/embedded-4_7-branch revision 200083]
*** Architecture: ARMv7-ME
*** Core Variant: Cortex-M4F
*** Port Info: Advanced kernel mode
*** Platform: STM32F407/F417 High Performance with DSP and FPU
*** Test Board: STMicroelectronics STM32F4-Discovery
----------------------------------------------------------------------------
--- Test Case 1.1 (Benchmark, messages #1)
--- Score : 199330 msgs/S, 398660 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.2 (Benchmark, messages #2)
--- Score : 170472 msgs/S, 340944 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.3 (Benchmark, messages #3)
--- Score : 170471 msgs/S, 340942 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.4 (Benchmark, context switch)
--- Score : 756752 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.5 (Benchmark, threads, full cycle)
--- Score : 130042 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.6 (Benchmark, threads, create only)
--- Score : 196372 threads/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.7 (Benchmark, mass reschedule, 5 threads)
--- Score : 59609 reschedules/S, 357654 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.8 (Benchmark, round robin context switching)
--- Score : 479164 ctxswc/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.9 (Benchmark, I/O Queues throughput)
--- Score : 630204 bytes/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.10 (Benchmark, virtual timers set/reset)
--- Score : 611438 timers/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.11 (Benchmark, semaphores wait/signal)
--- Score : 574200 wait+signal/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.12 (Benchmark, mutexes lock/unlock)
--- Score : 523264 lock+unlock/S
--- Result: SUCCESS
----------------------------------------------------------------------------
--- Test Case 1.13 (Benchmark, RAM footprint)
--- System: 3164 bytes
--- Thread: 76 bytes
--- Timer : 20 bytes
--- Semaph: 12 bytes
--- EventS: 4 bytes
--- EventL: 16 bytes
--- Mutex : 16 bytes
--- CondV.: 8 bytes
--- Queue : 36 bytes
--- MailB.: 40 bytes
--- Result: SUCCESS
----------------------------------------------------------------------------
Final result: SUCCESS

View File

@ -1,42 +1,42 @@
echo This script should be executed from the root of rusEfi trunk SVN local copy
pwd
echo Updating from SVN
call svn update
set RUSEFI_GIT_PATH=../rusefi.github/rusefi
ls -l %RUSEFI_GIT_PATH%
rd /s /q %RUSEFI_GIT_PATH%\firmware
rd /s /q %RUSEFI_GIT_PATH%\hardware
rd /s /q %RUSEFI_GIT_PATH%\java_console
rd /s /q %RUSEFI_GIT_PATH%\unit_tests
rd /s /q %RUSEFI_GIT_PATH%\win32_functional_tests
cp -r firmware %RUSEFI_GIT_PATH%
cp -r hardware %RUSEFI_GIT_PATH%
cp -r java_console %RUSEFI_GIT_PATH%
cp -r unit_tests %RUSEFI_GIT_PATH%
cp -r win32_functional_tests %RUSEFI_GIT_PATH%
rm -f %RUSEFI_GIT_PATH%/readme.*
rm -f %RUSEFI_GIT_PATH%/README.*
cp -r README.* %RUSEFI_GIT_PATH%
cp -r readme.* %RUSEFI_GIT_PATH%
echo Going to git copy location
cd %RUSEFI_GIT_PATH%
git config --global user.email "russianefi@gmail.com"
git config --global user.name "rusEfi"
git pull
git add *
git commit -a -m "auto-sync"
git push --repo https://rusefi:PASSWORD@github.com/rusefi/rusefi
echo This script should be executed from the root of rusEfi trunk SVN local copy
pwd
echo Updating from SVN
call svn update
set RUSEFI_GIT_PATH=../rusefi.github/rusefi
ls -l %RUSEFI_GIT_PATH%
rd /s /q %RUSEFI_GIT_PATH%\firmware
rd /s /q %RUSEFI_GIT_PATH%\hardware
rd /s /q %RUSEFI_GIT_PATH%\java_console
rd /s /q %RUSEFI_GIT_PATH%\unit_tests
rd /s /q %RUSEFI_GIT_PATH%\win32_functional_tests
cp -r firmware %RUSEFI_GIT_PATH%
cp -r hardware %RUSEFI_GIT_PATH%
cp -r java_console %RUSEFI_GIT_PATH%
cp -r unit_tests %RUSEFI_GIT_PATH%
cp -r win32_functional_tests %RUSEFI_GIT_PATH%
rm -f %RUSEFI_GIT_PATH%/readme.*
rm -f %RUSEFI_GIT_PATH%/README.*
cp -r README.* %RUSEFI_GIT_PATH%
cp -r readme.* %RUSEFI_GIT_PATH%
echo Going to git copy location
cd %RUSEFI_GIT_PATH%
git config --global user.email "russianefi@gmail.com"
git config --global user.name "rusEfi"
git pull
git add *
git commit -a -m "auto-sync"
git push --repo https://rusefi:PASSWORD@github.com/rusefi/rusefi

View File

@ -1,9 +1,9 @@
rd /s /q c:\stuff\rusefi.svn2git
mkdir -p c:\stuff\rusefi.svn2git\rusefi.svn
cd c:\stuff\rusefi.svn2git\rusefi.svn
svn co https://svn.code.sf.net/p/rusefi/code/trunk/ .
mkdir -p c:\stuff\rusefi.svn2git\rusefi.github
cd c:\stuff\rusefi.svn2git\rusefi.github
git clone https://github.com/rusefi/rusefi.git
rd /s /q c:\stuff\rusefi.svn2git
mkdir -p c:\stuff\rusefi.svn2git\rusefi.svn
cd c:\stuff\rusefi.svn2git\rusefi.svn
svn co https://svn.code.sf.net/p/rusefi/code/trunk/ .
mkdir -p c:\stuff\rusefi.svn2git\rusefi.github
cd c:\stuff\rusefi.svn2git\rusefi.github
git clone https://github.com/rusefi/rusefi.git

View File

@ -1,23 +1,23 @@
echo Statding test_bundle.bat
cd java_console
rem call ant autotest
rem IF NOT ERRORLEVEL 0 echo auto test ERROR DETECTED
rem IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
pwd
echo Cleaning
cd firmware
call clean.bat
cd ..
cd misc
call hw_test.bat
IF NOT ERRORLEVEL 0 echo real hardware test ERROR DETECTED
IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
pwd
echo %date% %time%
echo Statding test_bundle.bat
cd java_console
rem call ant autotest
rem IF NOT ERRORLEVEL 0 echo auto test ERROR DETECTED
rem IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
pwd
echo Cleaning
cd firmware
call clean.bat
cd ..
cd misc
call hw_test.bat
IF NOT ERRORLEVEL 0 echo real hardware test ERROR DETECTED
IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
pwd
echo %date% %time%
echo test_bundle.bat: done

View File

@ -1,48 +1,48 @@
echo I am unit_tests.bat
cd firmware
echo "CD to ${PWD}"
rm -fR .dep
rm -fR build
java -jar ../java_tools/version2header.jar
make
if not exist build/rusefi.hex echo FAILED TO COMPILE FIRMWARE
if not exist build/rusefi.hex exit -1
cd ..
echo We are in root folder
pwd
cd unit_tests
call compile.bat
pwd
ls -l build
if not exist build/rusefi_test.exe echo FAILED TO COMPILE UNIT TESTS
if not exist build/rusefi_test.exe exit -1
echo Unit tests build looks good, now executing unit tests
cd build
call rusefi_test.exe
IF NOT ERRORLEVEL echo UNIT TEST FAILED
IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
cd ..
echo Back to root folder
pwd
echo Preparing firmware-only fast upload
zip -j firmware/build/rusefi_firmware.zip firmware/svnversion.h firmware/build/rusefi.hex firmware/build/rusefi.bin firmware/build/rusefi.elf firmware/tunerstudio/rusefi.ini
echo Now uploading only firmware
ncftpput -u u71977750-build -p %RUSEFI_BUILD_FTP_PASS% rusefi.com separate_files firmware/build/rusefi_firmware.zip
echo I am unit_tests.bat
cd firmware
echo "CD to ${PWD}"
rm -fR .dep
rm -fR build
java -jar ../java_tools/version2header.jar
make
if not exist build/rusefi.hex echo FAILED TO COMPILE FIRMWARE
if not exist build/rusefi.hex exit -1
cd ..
echo We are in root folder
pwd
cd unit_tests
call compile.bat
pwd
ls -l build
if not exist build/rusefi_test.exe echo FAILED TO COMPILE UNIT TESTS
if not exist build/rusefi_test.exe exit -1
echo Unit tests build looks good, now executing unit tests
cd build
call rusefi_test.exe
IF NOT ERRORLEVEL echo UNIT TEST FAILED
IF NOT ERRORLEVEL 0 EXIT /B 1
cd ..
cd ..
echo Back to root folder
pwd
echo Preparing firmware-only fast upload
zip -j firmware/build/rusefi_firmware.zip firmware/svnversion.h firmware/build/rusefi.hex firmware/build/rusefi.bin firmware/build/rusefi.elf firmware/tunerstudio/rusefi.ini
echo Now uploading only firmware
ncftpput -u u71977750-build -p %RUSEFI_BUILD_FTP_PASS% rusefi.com separate_files firmware/build/rusefi_firmware.zip