HardFault related to auto r = convertFromInputValue(inputValue); #948

wow, it's a miracle anything ever worked!
This commit is contained in:
rusefi 2019-09-23 01:55:23 -04:00
parent c3eb05358f
commit b28710c908
3 changed files with 3 additions and 3 deletions

View File

@ -200,7 +200,7 @@ static void lcdPrintf(const char *fmt, ...) {
} }
static void showLine(lcd_line_e line, int screenY) { static void showLine(lcd_line_e line, int screenY) {
static char buffer[10]; static char buffer[_MAX_FILLER + 2];
switch (line) { switch (line) {
case LL_VERSION: case LL_VERSION:

View File

@ -30,7 +30,7 @@ public:
bool isStartedTooLongAgo() const; bool isStartedTooLongAgo() const;
private: private:
Logging logging; Logging logging;
char timeBuffer[10]; char timeBuffer[_MAX_FILLER + 2];
uint32_t counter = 0; uint32_t counter = 0;
/** /**
* We want to avoid visual jitter thus we want the left edge to be aligned * We want to avoid visual jitter thus we want the left edge to be aligned

View File

@ -484,7 +484,7 @@ static void adc_callback_slow(ADCDriver *adcp, adcsample_t *buffer, size_t n) {
AdcSubscription::UpdateSubscribers(); AdcSubscription::UpdateSubscribers();
} }
static char errorMsgBuff[10]; static char errorMsgBuff[_MAX_FILLER];
void addChannel(const char *name, adc_channel_e setting, adc_channel_mode_e mode) { void addChannel(const char *name, adc_channel_e setting, adc_channel_mode_e mode) {
if (setting == EFI_ADC_NONE) { if (setting == EFI_ADC_NONE) {