rusefi/firmware/util
Mingjie Shen 495f0ea8c4 Fix invoking virtual functions from constructors
Virtual functions should not be invoked from a constructor or destructor
of the same class. Confusingly, virtual functions are resolved
statically (not dynamically) in constructors and destructors for the
same class. The call should be made explicitly static by qualifying it
using the scope resolution operator.
2023-05-24 15:27:09 -04:00
..
containers change ObdCode to enum class builds firmware 2023-04-29 00:44:00 -04:00
math Fix invoking virtual functions from constructors 2023-05-24 15:27:09 -04:00
cli_registry.cpp more dead stuff 2023-04-29 05:15:34 -04:00
cli_registry.h more dead stuff 2023-04-29 05:15:34 -04:00
datalogging.cpp change ObdCode to enum class builds firmware 2023-04-29 00:44:00 -04:00
datalogging.h
efi_scaled_channel.h
efilib.cpp change ObdCode to enum class builds firmware 2023-04-29 00:44:00 -04:00
efilib.h https://github.com/rusefi/fw-AT-START-F435/issues/1 2023-05-23 23:38:02 -04:00
efitime.cpp
efitime.h
histogram.cpp it's going to be painful 2023-04-29 00:44:00 -04:00
histogram.h
loggingcentral.cpp change ObdCode to enum class builds firmware 2023-04-29 00:44:00 -04:00
loggingcentral.h
os_util.cpp
os_util.h
peak_detect.h
readme.md
timer.cpp
timer.h
tinymt32.c
tinymt32.h
util.mk

readme.md

Util

In this folder we have all the tiny utility stuff.

Ideally, code from this folder should not depend on code from any other folder.