rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
value_lookup_stubs.cpp
Go to the documentation of this file.
1/**
2 * @file value_lookup_stubs.cpp
3 * @brief These stubs are used to reduce the Flash amount used for some configs
4 *
5 * @date Jul 23, 2023
6 * @author andreika <prometheus.pcb@gmail.com>
7 * @author Andrey Belomutskiy, (c) 2012-2020
8 */
9
10#include "pch.h"
11#include "value_lookup.h"
12
13float getOutputValueByName(const char * /*name*/) {
14 return EFI_ERROR_CODE;
15}
16
17float getConfigValueByName(const char * /*name*/) {
18 return EFI_ERROR_CODE;
19}
20
21bool setConfigValueByName(const char * /*name*/, float /*value*/) {
22 return false;
23}
float getOutputValueByName(const char *)
bool setConfigValueByName(const char *, float)
float getConfigValueByName(const char *)