rusefi-1/firmware/docs/rusefi_custom_chibios.txt

28 lines
1.1 KiB
Plaintext

rusEfi is trying to use latest stable ChibiOS with minimal changes
At the moment rusEfi custom version of ChibiOS has the following changes:
*) minor OS monitoring and maintainability fixes:
chDbgStackOverflowPanic allows to know which thread has stack overflow
maxNesting good to know maximum ISR depth
ON_LOCK_HOOK is used to measure durations of critical sections
*) LSE auto-detection, see rusefi_lse_fix.h see LSE_TIMEOUT
*) Support for half/timeout-ISR for UART-DMA in /os/hal/include/uart.h and os/hal/ports/STM32/LLD/USARTv1/uart_lld.* by andreika
Weird changes without an explanation:
3) Uncommented "ASMXOBJS" support in os/common/ports/ARMCMx/compilers/GCC/rules.mk
8) Use local "struct tm *t" in os/hal/ports/STM32/LLD/RTCv1/rtc_lld.c
11) Fixes for UART4-UART8, USART_ISR_* flags USART_CR1_M in os/hal/ports/STM32/LLD/USARTv2/serial_lld.c and os/hal/ports/STM32/LLD/USARTv2/uart_lld.c
15) Use QueryPerformanceCounter() instead of POSIX gettimeofday() in os/rt/ports/SIMIA32/chcore.c
New files:
os/common/startup/SIMIA32/compilers/GCC/rules.mk
os/hal/ports/STM32/LLD/RTCv2/rusefi_lse_fix.h
os/hal/ports/simulator/posix/*