Grow CAN TX stack (#1201)

* grow

* check mock first
This commit is contained in:
Matthew Kennedy 2020-03-19 16:29:56 -07:00 committed by GitHub
parent 4096483aec
commit 2ae689073a
2 changed files with 7 additions and 1 deletions

View File

@ -14,7 +14,7 @@
class Logging;
void processCanRxMessage(const CANRxFrame& msg, Logging* logger);
class CanWrite final : public PeriodicController<256> {
class CanWrite final : public PeriodicController<512> {
public:
CanWrite();
void PeriodicTask(efitime_t nowNt) override;

View File

@ -217,6 +217,12 @@ percent_t getPedalPosition(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
if (mockPedalPosition != MOCK_UNDEFINED) {
return mockPedalPosition;
}
// Don't choke without a pedal set
if (CONFIG(throttlePedalPositionAdcChannel) == EFI_ADC_NONE) {
return 0;
}
DISPLAY_TAG(PEDAL_SECTION);
DISPLAY_TEXT(Analog_MCU_reads);